Skip to content

Commit 50fb17b

Browse files
committed
Add all the extra plugins that I use
I a number of plugins that I don't find general-purpose enough to force upon everyone, but it's nice to be able to get an idea for what's out there. Feel free to peruse these plugins at your leisure.
1 parent f2819c7 commit 50fb17b

File tree

1 file changed

+23
-0
lines changed

1 file changed

+23
-0
lines changed

vimrc.vim

+23
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
" File: .vimrc
2+
" Author: Jake Zimmerman <[email protected]>
3+
"
4+
" How I configure Vim :P
5+
"
6+
17
" Gotta be first
28
set nocompatible
39

@@ -40,6 +46,23 @@ Plugin 'jez/vim-c0'
4046
Plugin 'jez/vim-ispc'
4147
Plugin 'kchmck/vim-coffee-script'
4248

49+
" ---- Extras/Advanced plugins ----------------------------------------
50+
" Highlight and strip trailing whitespace
51+
"Plugin 'ntpeters/vim-better-whitespace'
52+
" Easily surround chunks of text
53+
"Plugin 'tpope/vim-surround'
54+
" Align CSV files at commas, align Markdown tables, and more
55+
"Plugin 'godlygeek/tabular'
56+
" Automaticall insert the closing HTML tag
57+
"Plugin 'HTML-AutoCloseTag'
58+
" Make tmux look like vim-airline (read README for extra instructions)
59+
"Plugin 'edkolev/tmuxline.vim'
60+
" All the other syntax plugins I use
61+
"Plugin 'ekalinin/Dockerfile.vim'
62+
"Plugin 'digitaltoad/vim-jade'
63+
"Plugin 'tpope/vim-liquid'
64+
"Plugin 'cakebaker/scss-syntax.vim'
65+
4366
call vundle#end()
4467

4568
filetype plugin indent on

0 commit comments

Comments
 (0)