Skip to content

Instantly share code, notes, and snippets.

@ScottSolomko
Created November 28, 2012 11:05
Show Gist options
  • Save ScottSolomko/4160530 to your computer and use it in GitHub Desktop.
Save ScottSolomko/4160530 to your computer and use it in GitHub Desktop.
.vimrc
set nocompatible " be iMproved
filetype off " required!
let g:vundle_default_git_proto = 'git'
set rtp+=~/.vim/bundle/vundle/
call vundle#rc()
" Let Vundle manage vundle ... required!
Bundle 'gmarik/vundle'
" My Bundles here
"
" original repos on github
Bundle 'altercation/vim-colors-solarized'
" vim-scripts repos
" non github repos
" ...
filetype plugin indent on " required!
" see :h vundle for more details or wiki for FAQ
" NOTE: comments after Bundle command are not allowed ...
" End of Vundle Package Manager
" -----------------------------------------------------
" Solarized config
syntax enable
set background=dark
set t_Co=16
let g:solarized_termcolors=16
colorscheme solarized
" -----------------------------------------------------
" My vim preferences
set nobackup " do not keep a backup file
set number " show line numbers
set hlsearch " highlight searches
set incsearch " use incremental searching
set ignorecase " ignore case when searching
set smartcase " no ignorecase if uppercase char is present
set backspace=indent,eol,start " make the backspace key work the way it should
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment