add a minimal vimrc designed primarily for reading many files

master
Andrew Coleman 2020-12-27 17:15:31 -05:00
parent 5440cbd2d2
commit 5db9beb539
1 changed files with 8 additions and 0 deletions

8
.minimal.vimrc Normal file
View File

@ -0,0 +1,8 @@
" gratis https://swordandsignals.com/2020/12/13/5-lines-in-vimrc.html
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
" can also be summarized as
set hls ic is nu noswf