add window navigation, nerdtree, jedi and typescript plugins

This commit is contained in:
Adam Lamers
2017-03-17 16:24:22 -05:00
parent b49b3b0b73
commit 043afa8c77
2 changed files with 13 additions and 0 deletions
+6
View File
@@ -160,3 +160,9 @@ augroup encrypted
" after the file has been written.
autocmd BufWritePost,FileWritePost *.gpg u
augroup END
" Window navigation
nnoremap <C-h> <C-w>h
nnoremap <C-j> <C-w>j
nnoremap <C-k> <C-w>k
nnoremap <C-l> <C-w>l
+7
View File
@@ -26,6 +26,9 @@ Plugin 'kien/ctrlp.vim'
Plugin 'octol/vim-cpp-enhanced-highlight'
Plugin 'mattn/emmet-vim'
Plugin 'tpope/vim-surround'
Plugin 'davidhalter/jedi-vim'
Plugin 'leafgarland/typescript-vim'
Plugin 'scrooloose/nerdtree'
" All of your Plugins must be added before the following line
call vundle#end() " required
@@ -88,3 +91,7 @@ let g:ycm_server_python_interpreter="/usr/local/bin/python2"
let g:ycm_confirm_extra_conf=0
let g:user_emmet_leader_key="<C-e>"
"NERDTree settings
nnoremap <leader>tt :NERDTreeFocus<CR>
let NERDTreeIgnore = ['__pycache__', '\.pyc$']