aboutsummaryrefslogtreecommitdiffstats
path: root/vim
diff options
context:
space:
mode:
authorJohannes Löthberg <johannes@kyriasis.com>2015-04-16 11:23:07 +0200
committerJohannes Löthberg <johannes@kyriasis.com>2015-04-16 11:23:07 +0200
commit5f5173716df1896177b11cbad1687dc5737477a3 (patch)
tree39c29d71a89d275b6e430f5bc188fa8500d132db /vim
parentf6d1867142635e9df7b2f6fd7df4ff4cfbc4c727 (diff)
downloaddotfiles-5f5173716df1896177b11cbad1687dc5737477a3.tar.xz
vim: neobundle: use begin/end
Diffstat (limited to 'vim')
-rw-r--r--vim/vimrc4
1 files changed, 3 insertions, 1 deletions
diff --git a/vim/vimrc b/vim/vimrc
index b1c0efc..198f50f 100644
--- a/vim/vimrc
+++ b/vim/vimrc
@@ -7,7 +7,7 @@ set runtimepath=$XDG_CONFIG_HOME/vim,$VIM,$VIMRUNTIME,/usr/share/vim/vimfiles,$X
" NeoBundle stuff
set runtimepath+=~/.config/vim/bundle/neobundle.vim/
-call neobundle#rc("$XDG_CONFIG_HOME/vim/bundle")
+call neobundle#begin("$XDG_CONFIG_HOME/vim/bundle")
NeoBundleFetch 'Shougo/neobundle.vim'
NeoBundle 'Shougo/vimproc', {
@@ -26,6 +26,8 @@ NeoBundle 'mattn/emmet-vim'
NeoBundle 'miekg/rfc'
NeoBundle 'tommcdo/vim-exchange'
+call neobundle#end()
+
" Make backspace behave in a sane manner.
set backspace=indent,eol,start