Vimrc

Generally, as a devOps engineer, I have to edit a lot of config files on remote servers, and these always almost have vim installed. Coincidentally over the years I have taken up vim quite swimmingly, however when I am SSH’d into a server I find it hard to keep turning on a few vim flags that improve the overall QOL. So I have this tiny .vimrc that I use.

set hlsearch    " highlight all search results
set ignorecase  " do case insensitive search 
set incsearch   " show incremental search results as you type
set number      " display line number
set noswapfile  " disable swap file

PS: I have borrowed this from Swords and signals