new (vimrc): add current vimrc

This commit is contained in:
eeemsi 2023-01-10 18:51:12 +01:00
parent 9ecab41b4b
commit b222afb251
1 changed files with 21 additions and 0 deletions

21
vimrc Normal file
View File

@ -0,0 +1,21 @@
" do not make Vim more Vi-compatible
set nocompatible
" disable modeline for security
set nomodeline
" Adjust the default color groups for a dark or light background, respectively.
set background=dark
" Highlight the screen line of the cursor
set cursorline
" enable syntax highlighting
syntax on
" Suppress the banner in netrw
let g:netrw_banner=0
" Tree style listing in netrw
let g:netrw_liststyle = 3