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/history
|
||||||
configDots/ranger/tagged
|
configDots/ranger/tagged
|
||||||
|
|
||||||
simpleDots/vim/vimplug-plugins
|
simpleDots/vim/bundle
|
||||||
!simpleDots/vim/vimplug-plugins/.gitkeep
|
|
||||||
|
|
|
@ -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
|
set nocompatible " be iMproved, required
|
||||||
filetype off " required
|
filetype off " required
|
||||||
|
|
||||||
call plug#begin('~/.vim/vimplug-plugins')
|
|
||||||
Plug 'Raimondi/delimitMate' " Autoclose quotes, parenthesis, brackets, etc.
|
" set the runtime path to include Vundle and initialize
|
||||||
Plug 'airblade/vim-gitgutter' " Git-indicators on the left
|
set rtp+=~/.vim/bundle/Vundle.vim
|
||||||
Plug 'dhruvasagar/vim-table-mode' " Nice ascii tables
|
call vundle#begin()
|
||||||
Plug 'itchyny/lightline.vim' " Status-line
|
" let Vundle manage Vundle, required
|
||||||
Plug 'junegunn/vim-easy-align' " Align at any chars
|
Plugin 'VundleVim/Vundle.vim'
|
||||||
Plug 'ntpeters/vim-better-whitespace' " Complain on evil eol whitespace
|
Plugin 'Raimondi/delimitMate' " Autoclose quotes, parenthesis, brackets, etc.
|
||||||
Plug 'scrooloose/nerdtree' " Nerdtree...
|
Plugin 'airblade/vim-gitgutter' " Git-indicators on the left
|
||||||
Plug 'tpope/vim-fugitive' " git integration
|
Plugin 'dhruvasagar/vim-table-mode' " Nice ascii tables
|
||||||
call plug#end()
|
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
|
filetype plugin indent on
|
||||||
syntax on
|
syntax on
|
||||||
|
|
Reference in a new issue