18 lines
343 B
VimL
18 lines
343 B
VimL
filetype plugin on
|
|
|
|
set encoding=utf-8
|
|
set directory=~/.vim/swp
|
|
|
|
" last known cursor position
|
|
" autocmd BufReadPost * if line("'\"") > 0 && line("'\"") <= line("$") | exe "normal g'\"" | endif
|
|
|
|
" remove trailing whitespace
|
|
autocmd BufWritePre * :%s/\s\+$//e
|
|
|
|
syntax on
|
|
set t_co=256
|
|
let g:molokai_termcolors=256
|
|
colorscheme molokai
|
|
|
|
set number
|