From f14a9d214f3a3873a41c0c1229f89c3460103e93 Mon Sep 17 00:00:00 2001 From: Johannes Löthberg Date: Thu, 28 Aug 2014 01:04:26 +0200 Subject: vimrc: XDG-ify neobundle properly, build command for vimproc on mac --- vim/vimrc | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'vim') 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' -- cgit v1.2.3-54-g00ecf