summaryrefslogtreecommitdiffstats
path: root/.vimrc
diff options
context:
space:
mode:
authorJan Pokorný <jpokorny@redhat.com>2013-04-09 14:28:33 +0200
committerJan Pokorný <jpokorny@redhat.com>2013-04-09 14:28:33 +0200
commitcb26c1e128694222f65edee7f41c28d102f7a42b (patch)
tree9596d026a28b4d93f35783557a920f66409d05bc /.vimrc
parent5593c643d5dbb3e132d8bb91f28493371c03a2a4 (diff)
downloaddotfiles-cb26c1e128694222f65edee7f41c28d102f7a42b.tar.gz
dotfiles-cb26c1e128694222f65edee7f41c28d102f7a42b.tar.xz
dotfiles-cb26c1e128694222f65edee7f41c28d102f7a42b.zip
Fix .vimrc to conform to what newer pathogen asks for
Signed-off-by: Jan Pokorný <jpokorny@redhat.com>
Diffstat (limited to '.vimrc')
-rw-r--r--.vimrc3
1 files changed, 2 insertions, 1 deletions
diff --git a/.vimrc b/.vimrc
index 65ec2ff..f8eff7c 100644
--- a/.vimrc
+++ b/.vimrc
@@ -16,7 +16,7 @@ noremap <C-right> :bnext<CR>
filetype off
call pathogen#infect()
-call pathogen#infect('~/.vim/vim4projects')
+call pathogen#infect('~/.vim/vim4projects/{}')
call pathogen#helptags()
" NERDTree
@@ -31,3 +31,4 @@ set t_Co=256 " Explicitly tell vim that the terminal supports 256 colors
" tagbar
nmap <F8> :TagbarToggle<CR>
+let NERDTreeIgnore = ['\.pyc$', '\.tar\.gz$']