Skip to content

Instantly share code, notes, and snippets.

@ShiningRay
Forked from anonymous/.vimrc
Created March 11, 2013 03:10
Show Gist options
  • Save ShiningRay/5131651 to your computer and use it in GitHub Desktop.
Save ShiningRay/5131651 to your computer and use it in GitHub Desktop.
set nocompatible " be iMproved
filetype off " required!
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 'Lokaltog/vim-easymotion'
Bundle 'rstacruz/sparkup', {'rtp': 'vim/'}
"Bundle 'tpope/vim-rails.git'
" vim-scripts repos
Bundle 'L9'
Bundle 'FuzzyFinder'
Bundle 'fholgado/minibufexpl.vim'
Bundle 'tpope/vim-surround'
Bundle 'tpope/vim-haml'
Bundle 'scrooloose/nerdtree'
Bundle 'nanotech/jellybeans.vim'
Bundle 'kien/ctrlp.vim'
Bundle 'mileszs/ack.vim'
Bundle "MarcWeber/vim-addon-mw-utils"
Bundle "tomtom/tlib_vim"
Bundle "honza/snipmate-snippets"
Bundle 'garbas/vim-snipmate'
" non github repos
"Bundle 'git://git.wincent.com/command-t.git'
" ...
filetype plugin indent on " required!
set ic
set sw=2 ts=2 sts=2 et
set autoindent
set number
"let g:Powerline_symbols = 'fancy'
set statusline=%<%f\ %h%m%r\ %y%=%{v:register}\ %-14.(%l,%c%V%)\ %P
set laststatus=2
set hidden
map <C-u> :NERDTreeToggle<CR>
let g:ctrlp_working_path_mode = 'ra'
map <F2> :update<CR>
imap <silent> <F2> <ESC>:update<CR>i
color desert
let g:ackprg = 'ag --nogroup --nocolor --column'
let g:miniBufExplMapCTabSwitchBufs=1
noremap <F3> :bn<CR>:<BS>
inoremap <silent> <F3> <ESC>:bn<CR>i
noremap <F4> :bp<CR>:<BS>
inoremap <silent> <F4> <ESC>:bn<CR>i
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment