diff options
-rw-r--r-- | plugin/vim-options.vim | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/plugin/vim-options.vim b/plugin/vim-options.vim index e91a6f4..d6af6fe 100644 --- a/plugin/vim-options.vim +++ b/plugin/vim-options.vim @@ -275,6 +275,28 @@ endif "----------------------------------------------------------------------------------------------------------------------- +" Nerdtree Plugin +"----------------------------------------------------------------------------------------------------------------------- +if !empty(glob($EditorDir.'plugged/nerdtree/plugin/NERD_tree.vim')) + " Disable ? do I can fucking reverse search + :autocmd FileType nerdtree silent! nunmap <buffer> ? + let g:NERDTreeShowLineNumbers=1 + let g:NERDTreeDirArrows=0 + let g:NERDTreeWinSize = 40 + let g:NERDTreeIgnore = ['\.pyc$'] + let g:NERDTreeDirArrows = 1 + let g:NERDTreeDirArrowExpandable = '▸' + let g:NERDTreeDirArrowCollapsible = '▾' + let g:NERDTreeMapOpenSplit = 's' + let g:NERDTreeMapPreviewSplit = 'gs' + let g:NERDTreeMapOpenVSplit = 'v' + let g:NERDTreeMapPreviewVSplit = 'gv' +endif +"----------------------------------------------------------------------------------------------------------------------- + + + +"----------------------------------------------------------------------------------------------------------------------- " Markdown "----------------------------------------------------------------------------------------------------------------------- if !empty(glob($EditorDir.'plugged/vim-markdown/indent/markdown.vim')) |