Created
May 30, 2013 05:39
-
-
Save nskeip/5675903 to your computer and use it in GitHub Desktop.
a nice day to post my .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
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