6 lines
184 B
VimL
6 lines
184 B
VimL
" Auto open nerd tree on startup
|
|
let g:nerdtree_tabs_open_on_gui_startup = 0
|
|
" Focus in the main content window
|
|
let g:nerdtree_tabs_focus_on_files = 1
|
|
map <F6> :NERDTreeTabsToggle<CR>
|