dotfiles/my_configs.vim

15 lines
262 B
VimL
Raw Normal View History

2018-05-28 04:09:22 -04:00
" Enable mouse support
set mouse=a
" Use X clipboard
set clipboard=unnamedplus
" Close NERDTree on Open
let NERDTreeQuitOnOpen=1
" Alternative tab controls
map <C-q><left> :tabp<cr>
map <C-q><right> :tabn<cr>
map <C-q><up> :tabr<cr>
map <C-q><down> :tabl<cr>