Skip to content

Commit

Permalink
Add all the extra plugins that I use
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
jez committed Nov 12, 2016
1 parent f2819c7 commit 50fb17b
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions vimrc.vim
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
" File: .vimrc
" Author: Jake Zimmerman <[email protected]>
"
" How I configure Vim :P
"

" Gotta be first
set nocompatible

Expand Down Expand Up @@ -40,6 +46,23 @@ Plugin 'jez/vim-c0'
Plugin 'jez/vim-ispc'
Plugin 'kchmck/vim-coffee-script'

" ---- Extras/Advanced plugins ----------------------------------------
" Highlight and strip trailing whitespace
"Plugin 'ntpeters/vim-better-whitespace'
" Easily surround chunks of text
"Plugin 'tpope/vim-surround'
" Align CSV files at commas, align Markdown tables, and more
"Plugin 'godlygeek/tabular'
" Automaticall insert the closing HTML tag
"Plugin 'HTML-AutoCloseTag'
" Make tmux look like vim-airline (read README for extra instructions)
"Plugin 'edkolev/tmuxline.vim'
" All the other syntax plugins I use
"Plugin 'ekalinin/Dockerfile.vim'
"Plugin 'digitaltoad/vim-jade'
"Plugin 'tpope/vim-liquid'
"Plugin 'cakebaker/scss-syntax.vim'

call vundle#end()

filetype plugin indent on
Expand Down

6 comments on commit 50fb17b

@jez
Copy link
Owner Author

@jez jez commented on 50fb17b Nov 13, 2016

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@reply2future
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

done it! thx for sharing.

@pengisgood
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Really good stuff! Thanks.

@wilzh40
Copy link

@wilzh40 wilzh40 commented on 50fb17b Oct 4, 2018

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

surprised to see this updated! I converted to spacemacs haha

@mannuelf
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

thanks for sharing, this is amazing.

@random-object
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

You are boss! Thanks homie

Please sign in to comment.