dotfiles/vim/vimrc

20 lines
389 B
VimL

syntax on
set number
set relativenumber
set autoindent
set expandtab
set smartindent
set shiftwidth=2
set softtabstop=2
set tabstop=2
set directory=~/.local/share/vim/swap,/tmp
set undodir=~/.local/share/vim/undo,/tmp
set undofile
autocmd FileType php setlocal sw=4 sts=4 ts=4
autocmd FileType gitcommit,markdown,text setlocal nosi spell tw=80 wm=2
autocmd BufWritePre * :%s/\s\+$//e