aboutsummaryrefslogtreecommitdiffstats
path: root/vim
diff options
context:
space:
mode:
authorJohannes Löthberg <johannes@kyriasis.com>2014-08-28 01:04:26 +0200
committerJohannes Löthberg <johannes@kyriasis.com>2014-08-28 01:04:26 +0200
commitf14a9d214f3a3873a41c0c1229f89c3460103e93 (patch)
tree061252a647b6bf481519c1b6b48c0858dd5b7c91 /vim
parent9de9b0e363a73daa266912160e5b9fc9b724ee79 (diff)
downloaddotfiles-f14a9d214f3a3873a41c0c1229f89c3460103e93.tar.xz
vimrc: XDG-ify neobundle properly, build command for vimproc on mac
Diffstat (limited to 'vim')
-rw-r--r--vim/vimrc3
1 files changed, 2 insertions, 1 deletions
diff --git a/vim/vimrc b/vim/vimrc
index 37d60c3..b72354c 100644
--- a/vim/vimrc
+++ b/vim/vimrc
@@ -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'