Skip to content

Instantly share code, notes, and snippets.

@nskeip
Created May 30, 2013 05:39
Show Gist options
  • Save nskeip/5675903 to your computer and use it in GitHub Desktop.
Save nskeip/5675903 to your computer and use it in GitHub Desktop.
a nice day to post my .vimrc
filetype off
call pathogen#runtime_append_all_bundles()
" making CommandT work...
map <C-t> :CommandT<CR>
syntax enable
set background=light
set t_Co=16
let g:solarized_termcolors=16
colorscheme solarized
filetype indent on
set autoindent
set expandtab
set shiftwidth=2
set tabstop=2
" current dir is current file's dir
set noautochdir
" Case insensitive search
set ic
" Higlhight search
set hls
" Wrap text instead of being on one line
set lbr
set nu
set noswapfile
" http://items.sjbach.com/319/configuring-vim-right
set history=1000
set title
set scrolloff=3
set ruler
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment