10 lines
175 B
VimL
10 lines
175 B
VimL
" System-wide vim configuration
|
|
|
|
set nocompatible
|
|
set backspace=indent,eol,start
|
|
set history=50
|
|
set ruler
|
|
|
|
if filereadable("/etc/vimrc.local")
|
|
source /etc/vimrc.local
|
|
endif
|