VIM: Switch to VUNDLE
This commit is contained in:
parent
68acf547ef
commit
00d2f7c647
4 changed files with 16 additions and 2537 deletions
3
.gitignore
vendored
3
.gitignore
vendored
|
@ -2,5 +2,4 @@ configDots/ranger/bookmarks
|
|||
configDots/ranger/history
|
||||
configDots/ranger/tagged
|
||||
|
||||
simpleDots/vim/vimplug-plugins
|
||||
!simpleDots/vim/vimplug-plugins/.gitkeep
|
||||
simpleDots/vim/bundle
|
||||
|
|
|
@ -1 +0,0 @@
|
|||
Align.vba: call delete('/home/je/.vim/plugin/AlignPlugin.vim')|call delete('/home/je/.vim/plugin/AlignMapsPlugin.vim')|call delete('/home/je/.vim/plugin/cecutil.vim')|call delete('/home/je/.vim/doc/Align.txt')|call delete('/home/je/.vim/autoload/Align.vim')|call delete('/home/je/.vim/autoload/AlignMaps.vim')
|
File diff suppressed because it is too large
Load diff
|
@ -4,16 +4,21 @@
|
|||
set nocompatible " be iMproved, required
|
||||
filetype off " required
|
||||
|
||||
call plug#begin('~/.vim/vimplug-plugins')
|
||||
Plug 'Raimondi/delimitMate' " Autoclose quotes, parenthesis, brackets, etc.
|
||||
Plug 'airblade/vim-gitgutter' " Git-indicators on the left
|
||||
Plug 'dhruvasagar/vim-table-mode' " Nice ascii tables
|
||||
Plug 'itchyny/lightline.vim' " Status-line
|
||||
Plug 'junegunn/vim-easy-align' " Align at any chars
|
||||
Plug 'ntpeters/vim-better-whitespace' " Complain on evil eol whitespace
|
||||
Plug 'scrooloose/nerdtree' " Nerdtree...
|
||||
Plug 'tpope/vim-fugitive' " git integration
|
||||
call plug#end()
|
||||
|
||||
" set the runtime path to include Vundle and initialize
|
||||
set rtp+=~/.vim/bundle/Vundle.vim
|
||||
call vundle#begin()
|
||||
" let Vundle manage Vundle, required
|
||||
Plugin 'VundleVim/Vundle.vim'
|
||||
Plugin 'Raimondi/delimitMate' " Autoclose quotes, parenthesis, brackets, etc.
|
||||
Plugin 'airblade/vim-gitgutter' " Git-indicators on the left
|
||||
Plugin 'dhruvasagar/vim-table-mode' " Nice ascii tables
|
||||
Plugin 'itchyny/lightline.vim' " Status-line
|
||||
Plugin 'junegunn/vim-easy-align' " Align at any chars
|
||||
Plugin 'ntpeters/vim-better-whitespace' " Complain on evil eol whitespace
|
||||
Plugin 'preservim/nerdtree' " Nerdtree...
|
||||
Plugin 'tpope/vim-fugitive' " git integration
|
||||
call vundle#end()
|
||||
|
||||
filetype plugin indent on
|
||||
syntax on
|
||||
|
|
Reference in a new issue