Skip to content

Instantly share code, notes, and snippets.

@jstorimer
Last active December 25, 2015 04:29
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jstorimer/6917512 to your computer and use it in GitHub Desktop.
Save jstorimer/6917512 to your computer and use it in GitHub Desktop.
Vim plugins + vimrc
git_bundles = [
"git://github.com/ervandew/supertab.git",
"git://github.com/godlygeek/tabular.git",
"git://github.com/hallison/vim-rdoc.git",
"git://github.com/pangloss/vim-javascript.git",
"git://github.com/timcharper/textile.vim.git",
"git://github.com/tpope/vim-cucumber.git",
"git://github.com/tpope/vim-fugitive.git",
"git://github.com/tpope/vim-git.git",
"git://github.com/tpope/vim-haml.git",
"git://github.com/tpope/vim-markdown.git",
"git://github.com/tpope/vim-rails.git",
"git://github.com/tpope/vim-repeat.git",
"git://github.com/tpope/vim-surround.git",
"git://github.com/tpope/vim-vividchalk.git",
"git://github.com/tsaleh/taskpaper.vim.git",
"git://github.com/tsaleh/vim-matchit.git",
"git://github.com/tsaleh/vim-shoulda.git",
"git://github.com/tsaleh/vim-tcomment.git",
"git://github.com/tsaleh/vim-tmux.git",
"git://github.com/vim-ruby/vim-ruby.git",
"git://github.com/vim-scripts/Gist.vim.git",
"git://github.com/kien/ctrlp.vim.git",
"git://github.com/mileszs/ack.vim.git",
]
" pathogen stuff
call pathogen#infect()
syntax on
filetype plugin indent on
" 2 space indenting on <tab>
set smartindent
set tabstop=2
set shiftwidth=2
set expandtab
" Show the current line, current char, etc
set ruler
" Easier movement between windows
map <C-J> <C-W>j
map <C-K> <C-W>k
map <C-L> <C-W>l
map <C-H> <C-W>h
" Use ag instead of ack
let g:ackprg = 'ag --nogroup --nocolor --column'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment