diff options
author | Johannes Löthberg <johannes@kyriasis.com> | 2015-04-16 11:23:07 +0200 |
---|---|---|
committer | Johannes Löthberg <johannes@kyriasis.com> | 2015-04-16 11:23:07 +0200 |
commit | 5f5173716df1896177b11cbad1687dc5737477a3 (patch) | |
tree | 39c29d71a89d275b6e430f5bc188fa8500d132db /vim/vimrc | |
parent | f6d1867142635e9df7b2f6fd7df4ff4cfbc4c727 (diff) | |
download | dotfiles-5f5173716df1896177b11cbad1687dc5737477a3.tar.xz |
vim: neobundle: use begin/end
Diffstat (limited to 'vim/vimrc')
-rw-r--r-- | vim/vimrc | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -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 |