From b222afb251d440f23731d2956305260600aa078c Mon Sep 17 00:00:00 2001 From: eeemsi Date: Tue, 10 Jan 2023 18:51:12 +0100 Subject: [PATCH] new (vimrc): add current vimrc --- vimrc | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 vimrc diff --git a/vimrc b/vimrc new file mode 100644 index 0000000..eb42f30 --- /dev/null +++ b/vimrc @@ -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 +