summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTharre <tharre3@gmail.com>2015-05-25 15:56:01 +0200
committerTharre <tharre3@gmail.com>2016-10-07 20:10:55 +0000
commitfc01b600061919cf36e2508db0f5d58763955fe0 (patch)
tree8c95a917a5acee0f209000fd97e4b1ba31ad6e90
parent9ed4d1cfa3546143231958c4f75894ac907a1a56 (diff)
downloaddotfiles-fc01b600061919cf36e2508db0f5d58763955fe0.tar.gz
dotfiles-fc01b600061919cf36e2508db0f5d58763955fe0.tar.xz
dotfiles-fc01b600061919cf36e2508db0f5d58763955fe0.zip
vim: revert reinstall behavior and add new plugins
-rw-r--r--shell/_vimrc8
1 files changed, 3 insertions, 5 deletions
diff --git a/shell/_vimrc b/shell/_vimrc
index 68dffe8..c106ad0 100644
--- a/shell/_vimrc
+++ b/shell/_vimrc
@@ -7,11 +7,9 @@
let mapleader="," " set leader early as otherwise it wouldn't work
" ----- NeoBundle -----
-let reinstall=0
if !filereadable(expand('~/.vim/bundle/neobundle.vim/README.md'))
" if vundle isn't currently installed
silent !git clone https://github.com/Shougo/neobundle.vim ~/.vim/bundle/neobundle.vim
- let reinstall=1
endif
if has('vim_starting')
@@ -48,8 +46,10 @@ NeoBundle 'tpope/vim-surround'
"NeoBundle 'msanders/snipmate.vim'
NeoBundle 'davidhalter/jedi-vim'
NeoBundle 'wting/rust.vim'
+NeoBundle 'ledger/vim-ledger'
"NeoBundle 'godlygeek/tabular'
"NeoBundle 'plasticboy/vim-markdown'
+NeoBundle 'junegunn/vim-easy-align'
call neobundle#end()
@@ -57,9 +57,7 @@ filetype plugin indent on
" If there are uninstalled bundles found on startup,
" this will conveniently prompt you to install them.
-if reinstall
- NeoBundleInstall
-endif
+NeoBundleCheck
" ----- general settings -----
set encoding=utf-8