Browse Source

Put ~/.vim first in &rtp and ~/.vim/after last.

The paths ~/.vim and ~/.vim/after where hardcoded so this might be an
*NIX only solution.

Could close #244.
pull/300/head
Lucas Hoffmann 13 years ago
parent
commit
6f633a82af
1 changed files with 4 additions and 0 deletions
  1. +4
    -0
      autoload/vundle/config.vim

+ 4
- 0
autoload/vundle/config.vim View File

@ -81,6 +81,10 @@ func! s:rtp_add_a()
let appends = join(paths, '/after,').'/after'
exec 'set rtp^='.fnameescape(prepends)
exec 'set rtp+='.fnameescape(appends)
set rtp-=~/.vim
set rtp^=~/.vim
set rtp-=~/.vim/after
set rtp+=~/.vim/after
endf
func! s:rtp_rm(dir) abort


Loading…
Cancel
Save