From 6fb11f784a9626bc369f783659221fa10e3b579d Mon Sep 17 00:00:00 2001 From: Julien Wittouck Date: Sat, 02 May 2026 08:16:25 +0000 Subject: [PATCH] ✨ : add .vimrc --- dot_vimrc | 16 ++++++++++++++++ 1 file(s) changed, 16 insertion(s)(+), 0 deletion(s)(-) diff --git a/dot_vimrc b/dot_vimrc new file mode 100644 --- /dev/null +++ b/dot_vimrc @@ -0,0 +1,16 @@ +set nocompatible " get rid of Vi compatibility mode. SET FIRST! +filetype plugin indent on " filetype detection[ON] plugin[ON] indent[ON] +syntax enable " enable syntax highlighting (previously syntax on). +set number " show line numbers +set laststatus=2 " last window always has a statusline +filetype indent on " activates indenting for files +set ignorecase " Make searches case-insensitive. +set ruler " Always show info along bottom. +set autoindent " auto-indent +set tabstop=4 " tab spacing +set softtabstop=4 " unify +set shiftwidth=4 " indent/outdent by 4 columns +set shiftround " always indent/outdent to the nearest tabstop +set expandtab " use spaces instead of tabs +set nowrap " don't wrap text +highlight LineNr ctermfg=black ctermbg=white " use white background for line numbers -- tangled.sh