-
-
Save jstorimer/6917512 to your computer and use it in GitHub Desktop.
Vim plugins + vimrc
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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", | |
] |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
" 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