Created
March 22, 2012 09:33
-
-
Save kazjote/2157343 to your computer and use it in GitHub Desktop.
vimrc
This file contains 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
set nocompatible | |
filetype off | |
set rtp+=~/.vim/bundle/vundle/ | |
call vundle#rc() | |
" let Vundle manage Vundle | |
" required! | |
Bundle 'gmarik/vundle' | |
" My Bundles here: | |
" | |
" original repos on github | |
Bundle 'tpope/vim-fugitive' | |
Bundle 'tpope/vim-rails.git' | |
Bundle 'tpope/vim-haml' | |
Bundle 'tpope/vim-rails' | |
Bundle 'tpope/vim-surround' | |
Bundle 'scrooloose/nerdtree' | |
Bundle 'sjl/gundo.vim' | |
Bundle 'xolox/vim-notes' | |
Bundle 'benmills/vimux' | |
Bundle 'svenfuchs/vim-deliminator' | |
Bundle 'Shougo/neocomplcache' | |
let g:neocomplcache_enable_at_startup = 1 | |
Bundle 'mileszs/ack.vim' | |
let g:ackprg="ack-grep -H --nocolor --nogroup --column" | |
" vim-snipmate | |
Bundle "MarcWeber/vim-addon-mw-utils" | |
Bundle "tomtom/tlib_vim" | |
Bundle "snipmate-snippets" | |
Bundle "garbas/vim-snipmate" | |
Bundle "corntrace/bufexplorer" | |
" vim-scripts repos | |
Bundle 'L9' | |
Bundle 'FuzzyFinder' | |
Bundle 'dbext.vim' | |
syntax on | |
filetype plugin indent on | |
set tabstop=2 | |
set smarttab | |
set shiftwidth=2 | |
set autoindent | |
set expandtab | |
set nu | |
set showmatch | |
set list | |
set nocp incsearch | |
set lcs=tab:\ \ ,trail:~,extends:>,precedes:< | |
nmap ff :FufFile **/<CR> | |
nmap fb :FufBuffer **/<CR> | |
nmap tt :NERDTreeToggle<CR> | |
colorscheme elflord | |
autocmd BufRead *.vala set efm=%f:%l.%c-%[%^:]%#:\ %t%[%^:]%#:\ %m | |
autocmd BufRead *.vapi set efm=%f:%l.%c-%[%^:]%#:\ %t%[%^:]%#:\ %m | |
au BufRead,BufNewFile *.vala setfiletype vala | |
au BufRead,BufNewFile *.vapi setfiletype vala | |
" gundo | |
nnoremap <F5> :GundoToggle<CR> | |
let g:slime_target = "tmux" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment