aboutsummaryrefslogtreecommitdiff
path: root/plugin
diff options
context:
space:
mode:
authorCody Hiar <codyfh@gmail.com>2017-03-24 14:34:37 -0600
committerCody Hiar <codyfh@gmail.com>2017-03-24 14:34:37 -0600
commit08684737534725d459da705c6d139add0aa0b6fe (patch)
tree5d8b395a897c4fa03ba2f8b2f1b03c40e9aaa68b /plugin
parent32888463277c4606856a71cfedc645d3d28c977b (diff)
Updating to add nerdtree back in
Diffstat (limited to 'plugin')
-rw-r--r--plugin/vim-options.vim22
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'))