dotfiles/.vimrc

14 lines
298 B
VimL
Raw Normal View History

2012-03-02 10:31:58 +01:00
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