Created
March 14, 2012 19:37
-
-
Save fapestniegd/2038907 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| "----------------------------------------------------------------------------- | |
| " NERD Tree Plugin Settings | |
| "----------------------------------------------------------------------------- | |
| " Toggle the NERD Tree on an off with F7 | |
| nmap <F7> :NERDTreeToggle<CR> | |
| nmap ,m :NERDTreeClose<CR>:NERDTreeToggle<CR> | |
| " Close the NERD Tree with Shift-F7 | |
| "nmap <S-F7> :NERDTreeClose<CR> | |
| " Store the bookmarks file in perforce | |
| let NERDTreeBookmarksFile="~/.vim/NERDTreeBookmarks" | |
| " Don't display these kinds of files | |
| let NERDTreeIgnore=[ '\.ncb$', '\.suo$', '\.vcproj\.RIMNET', '\.obj$', | |
| \ '\.ilk$', '^BuildLog.htm$', '\.pdb$', '\.idb$', | |
| \ '\.embed\.manifest$', '\.embed\.manifest.res$', | |
| \ '\.intermediate\.manifest$', '^mt.dep$' ] | |
| let NERDTreeShowBookmarks=1 " Show the bookmarks table on startup | |
| let NERDTreeShowFiles=1 " Show hidden files, too | |
| let NERDTreeShowHidden=1 | |
| let NERDTreeQuitOnOpen=1 " Quit on opening files from the tree | |
| let NERDTreeHighlightCursorline=1 " Highlight the selected entry in the tree | |
| let NERDTreeMouseMode=2 " Use a single click to fold/unfold directories | |
| " and a double click to open files |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment