mirror of
https://github.com/void-linux/void-packages.git
synced 2025-10-02 08:35:16 +02:00
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
|