added vim config and solarized scheme

This commit is contained in:
Oliver Ladner 2012-03-02 10:31:58 +01:00
commit ddc6fdb82c
2 changed files with 1132 additions and 0 deletions

1118
.vim/colors/solarized.vim Normal file

File diff suppressed because it is too large Load diff

14
.vimrc Normal file
View file

@ -0,0 +1,14 @@
syntax on
filetype on
set background=dark
set showcmd
set hlsearch
colorscheme solarized ".vim/colors/solarized.vim
" Jump to last position in file when reopening
if has("autocmd")
au BufReadPost * if line("'\"") > 1 && line("'\"") <= line("$") | exe "normal! g'\"" | endif
endif
set t_Co=256