new plug, new ctrlp, rainbowparens
This commit is contained in:
1
.gitignore
vendored
1
.gitignore
vendored
@@ -1,3 +1,4 @@
|
|||||||
.netrwhist
|
.netrwhist
|
||||||
autoload/plug.vim
|
autoload/plug.vim
|
||||||
|
autoload/plug.vim.old
|
||||||
plugged/
|
plugged/
|
||||||
|
|||||||
45
vimrc
45
vimrc
@@ -12,26 +12,30 @@ endif
|
|||||||
|
|
||||||
if(have_plug)
|
if(have_plug)
|
||||||
call plug#begin('~/.vim/plugged')
|
call plug#begin('~/.vim/plugged')
|
||||||
Plug 'bling/vim-airline' "Status bar
|
Plug 'w0ng/vim-hybrid' " Hybrid colorscheme
|
||||||
Plug 'evanmiller/nginx-vim-syntax' "Nginx Syntax
|
Plug 'bling/vim-airline' " Status bar
|
||||||
Plug 'gregsexton/gitv' "GitK for Fugitive
|
Plug 'gregsexton/gitv' " GitK for Fugitive
|
||||||
Plug 'ivyl/vim-bling' "blink search results
|
Plug 'ivyl/vim-bling' " blink search results
|
||||||
Plug 'kien/ctrlp.vim' "Fuzzy search
|
Plug 'ctrlpvim/ctrlp.vim' " Fuzzy search
|
||||||
Plug 'leshill/vim-json' "JSON support
|
Plug 'majutsushi/tagbar' " Ctags integration
|
||||||
Plug 'majutsushi/tagbar' "Ctags integration
|
Plug 'msanders/snipmate.vim' " Snippets
|
||||||
Plug 'mattn/emmet-vim' "ZenCoding
|
Plug 'tommcdo/vim-lion' " Align stuff
|
||||||
Plug 'msanders/snipmate.vim' "Snippets
|
Plug 'tpope/vim-fugitive' " Work with git repos
|
||||||
Plug 'scrooloose/syntastic' "Syntax checker
|
Plug 'tpope/vim-surround' " Surround with quotes
|
||||||
Plug 'tommcdo/vim-lion' "Align stuff
|
Plug 'rking/ag.vim' " Silver Searcher Support
|
||||||
Plug 'tpope/vim-fugitive' "Work with git repos
|
Plug 'junegunn/rainbow_parentheses.vim' " Color matched parenthesis
|
||||||
Plug 'tpope/vim-rails' "Rails integration
|
" Language
|
||||||
Plug 'tpope/vim-surround' "Surround with quotes
|
Plug 'dag/vim-fish' " Fish Shell Support
|
||||||
Plug 'w0ng/vim-hybrid' "Hybrid colorscheme
|
Plug 'tpope/vim-rails' " Rails integration
|
||||||
Plug 'slim-template/vim-slim' "SLIM Markup Syntax
|
Plug 'mattn/emmet-vim' " ZenCoding
|
||||||
Plug 'dag/vim-fish' "Fish Shell Support
|
" Syntax
|
||||||
Plug 'rking/ag.vim' "Silver Searcher Support
|
Plug 'evanmiller/nginx-vim-syntax' " Nginx Syntax
|
||||||
Plug 'pangloss/vim-javascript' "Vim Javascript support
|
Plug 'scrooloose/syntastic' " Syntax checker
|
||||||
Plug 'kennethzfeng/vim-raml' "RAML Bindings
|
Plug 'leshill/vim-json' " JSON support
|
||||||
|
Plug 'slim-template/vim-slim' " SLIM Markup Syntax
|
||||||
|
Plug 'pangloss/vim-javascript' " Vim Javascript support
|
||||||
|
Plug 'kennethzfeng/vim-raml' " RAML Bindings
|
||||||
|
Plug 'digitaltoad/vim-jade' " JADE bindings
|
||||||
call plug#end()
|
call plug#end()
|
||||||
|
|
||||||
if empty(glob("~/.vim/plugged"))
|
if empty(glob("~/.vim/plugged"))
|
||||||
@@ -74,6 +78,7 @@ if has("autocmd")
|
|||||||
filetype plugin indent on
|
filetype plugin indent on
|
||||||
|
|
||||||
augroup CleanWhitespace
|
augroup CleanWhitespace
|
||||||
|
au!
|
||||||
autocmd BufWritePre * :call <SID>StripTrailingWhitespace()
|
autocmd BufWritePre * :call <SID>StripTrailingWhitespace()
|
||||||
augroup END
|
augroup END
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user