diff options
author | Johannes Löthberg <johannes@kyriasis.com> | 2015-04-19 05:22:19 +0200 |
---|---|---|
committer | Johannes Löthberg <johannes@kyriasis.com> | 2015-04-19 05:22:19 +0200 |
commit | 6c817f2476e8191a8a6d6d5880162a5c0990070f (patch) | |
tree | 158a6b18d7ce3f53480207e6739024b31cdf9111 | |
parent | e006cc6421de4e6cdf3762f529b66303e6d76d61 (diff) | |
download | dotfiles-6c817f2476e8191a8a6d6d5880162a5c0990070f.tar.xz |
vim: Use XDG_CONFIG_HOME in neobundle
-rw-r--r-- | vim/vimrc | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -6,8 +6,8 @@ set undodir=$XDG_CACHE_HOME/vim/undo,/tmp set runtimepath=$XDG_CONFIG_HOME/vim,$VIM,$VIMRUNTIME,/usr/share/vim/vimfiles,$XDG_CONFIG_HOME/vim/after " NeoBundle stuff -set runtimepath+=~/.config/vim/bundle/neobundle.vim/ -call neobundle#begin("$XDG_CONFIG_HOME/vim/bundle") +set runtimepath+=$XDG_CONFIG_HOME/vim/bundle/neobundle.vim/ +call neobundle#begin(expand('$XDG_CONFIG_HOME/vim/bundle')) NeoBundleFetch 'Shougo/neobundle.vim' NeoBundle 'Shougo/vimproc', { |