Skip to content

Commit 5fd6dc6

Browse files
committed
Plugins NERDTree and NERDTree Tabs
These two plugins let you view your project's files in a sidebar similar to Sublime or your favorite IDE. There are two plugins here: - NERDTree is responsible for opening up the project tree browser. - NERDTree Tabs is responsible for opening up the same project tree browser on every tab. Use \t to open or close the sidebar. For more usage information, press ? inside the NERDTree sidebar, and read the project documentation: - https://github.com/scrooloose/nerdtree - https://github.com/jistr/vim-nerdtree-tabs
1 parent a1f4055 commit 5fd6dc6

File tree

1 file changed

+11
-0
lines changed

1 file changed

+11
-0
lines changed

vimrc.vim

+11
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,10 @@ Plugin 'tomasr/molokai'
1414
Plugin 'vim-airline/vim-airline'
1515
Plugin 'vim-airline/vim-airline-themes'
1616

17+
" ----- Vim as a programmer's text editor -----------------------------
18+
Plugin 'scrooloose/nerdtree'
19+
Plugin 'jistr/vim-nerdtree-tabs'
20+
1721
call vundle#end()
1822

1923
filetype plugin indent on
@@ -63,3 +67,10 @@ let g:airline#extensions#tabline#enabled = 1
6367
" Use the solarized theme for the Airline status bar
6468
let g:airline_theme='solarized'
6569

70+
" ----- jistr/vim-nerdtree-tabs -----
71+
" Open/close NERDTree Tabs with \t
72+
nmap <silent> <leader>t :NERDTreeTabsToggle<CR>
73+
" To have NERDTree always open on startup
74+
let g:nerdtree_tabs_open_on_console_startup = 1
75+
76+

0 commit comments

Comments
 (0)