mirror of
https://github.com/webgefrickel/dotfiles
synced 2024-11-17 09:25:52 +00:00
c911f34027
With default configs and configs for plugins. Wrap autocommands in a vimrc group as well.
11 lines
338 B
VimL
11 lines
338 B
VimL
" mac terminal-vim play nicely with tmux
|
|
"======================================================================
|
|
|
|
if &term =~ '^screen'
|
|
" tmux will send xterm-style keys when its xterm-keys option is on
|
|
execute "set <xUp>=\e[1;*A"
|
|
execute "set <xDown>=\e[1;*B"
|
|
execute "set <xRight>=\e[1;*C"
|
|
execute "set <xLeft>=\e[1;*D"
|
|
endif
|