diff options
author | Johannes Löthberg <johannes@kyriasis.com> | 2014-08-28 01:04:26 +0200 |
---|---|---|
committer | Johannes Löthberg <johannes@kyriasis.com> | 2014-08-28 01:04:26 +0200 |
commit | f14a9d214f3a3873a41c0c1229f89c3460103e93 (patch) | |
tree | 061252a647b6bf481519c1b6b48c0858dd5b7c91 /vim | |
parent | 9de9b0e363a73daa266912160e5b9fc9b724ee79 (diff) | |
download | dotfiles-f14a9d214f3a3873a41c0c1229f89c3460103e93.tar.xz |
vimrc: XDG-ify neobundle properly, build command for vimproc on mac
Diffstat (limited to 'vim')
-rw-r--r-- | vim/vimrc | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -14,12 +14,13 @@ set backspace=indent,eol,start " NeoBndle stuff set runtimepath+=~/.config/vim/bundle/neobundle.vim/ -call neobundle#rc('/home/kyrias/.config/vim/bundle') +call neobundle#rc("$XDG_CONFIG_HOME/vim/bundle") NeoBundleFetch 'Shougo/neobundle.vim' NeoBundle 'Shougo/vimproc', { \ 'build' : { \ 'unix' : 'make -f make_unix.mak', + \ 'mac' : 'make -f make_mac.mak', \ }, \ } NeoBundle 'Shougo/unite.vim' |