14 lines
298 B
VimL
14 lines
298 B
VimL
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
|
|
|