.dotfiles/.vimrc
Tobias Reisinger a92374aa00 init
2019-09-24 01:22:47 +02:00

15 lines
219 B
VimL

set number
syntax on
set tabstop=4
set shiftwidth=4
set expandtab
set encoding=utf-8
set nowrap
if has("autocmd")
au BufReadPost * if line("'\"") > 0 && line("'\"") <= line("$") | exe "normal! g`\"" | endif
endif