dotfiles/my_configs.vim

17 lines
314 B
VimL

call pathogen#infect('~/.dotfiles/vim_plugins/{}')
" 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>