diff options
author | Adrian Kummerlaender | 2016-10-12 12:16:55 +0200 |
---|---|---|
committer | Adrian Kummerlaender | 2016-10-12 12:16:55 +0200 |
commit | 4f93a0e96cb4c8c1f081c704220a33a1cc4d5a3b (patch) | |
tree | df944368339f887eebb401f44470e339184d1d2c /vim | |
parent | d07415cc754910b7e78fb857adec55e2b8150871 (diff) | |
download | dotfiles-4f93a0e96cb4c8c1f081c704220a33a1cc4d5a3b.tar dotfiles-4f93a0e96cb4c8c1f081c704220a33a1cc4d5a3b.tar.gz dotfiles-4f93a0e96cb4c8c1f081c704220a33a1cc4d5a3b.tar.bz2 dotfiles-4f93a0e96cb4c8c1f081c704220a33a1cc4d5a3b.tar.lz dotfiles-4f93a0e96cb4c8c1f081c704220a33a1cc4d5a3b.tar.xz dotfiles-4f93a0e96cb4c8c1f081c704220a33a1cc4d5a3b.tar.zst dotfiles-4f93a0e96cb4c8c1f081c704220a33a1cc4d5a3b.zip |
Add _nerdtree_ config to `vimrc`
Diffstat (limited to 'vim')
-rw-r--r-- | vim/.vimrc | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -2,6 +2,7 @@ " * pathogen -- autoload other plugins " * ctrlp.vim -- fuzzy file search " * gundo.vim -- visualize undo tree +" * nertree -- nicer file browser with sidebar support " * vim-airline -- better status bar " * vim-unimpaired -- bracket mappings " * vim-gitgutter -- display git diffs alongside line numbers @@ -106,6 +107,7 @@ let g:goyo_width = 90 let g:goyo_margin_top = 1 let g:goyo_margin_bottom = 0 +nnoremap <F4> :NERDTreeToggle<CR> nnoremap <F5> :GundoToggle<CR> nnoremap <F6> :GitGutterToggle<CR> nnoremap <F7> :set cursorline!<CR> |