.dotfiles/.vimrc

15 lines
219 B
VimL
Raw Normal View History

2019-09-23 23:22:47 +00:00
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