is your vim gay?

if yes add the following to your .vimrc:

" make sure it is in vim mode
set nocompatible
" set a nice font
set guifont=Lucida\ Console:h11
" a nice dark color scheme
colorscheme murphy
" switch syntax highlighting on
syn on
" keep 3 lines between cursor and top/bottom
set scrolloff=3
" disable switching to ex mode
map Q <Nop>
" disable those annoying gay highlighted paren
hi clear MatchParen
" show matching paren when typing
set sm
" tab size 4
set ts=4
" shift width 4
set sw=4
" auto indent on
set ai
" highlight search on
set hlsearch
" allow backspace over auto-indented, start of line and start of edit
set backspace=indent,eol,start

for vim 9.1

 
 
 
back