💾 Archived View for gem.sdf.org › jmccue › computer › slackware › vimfix.txt captured on 2023-11-04 at 12:46:33.

View Raw

More Information

-=-=-=-=-=-=-

" ----------------------------------------------------------------------
" For Version 7.0 or above
" Turn off all the defaults I do not like
"      http://vimrc-dissection.blogspot.com/2006/08/vim-turn-that-showmatch-crap.html
" ----------------------------------------------------------------------
:let loaded_matchparen = 1
:set comments=""
:set matchpairs=""
:set mouse=
:set nocin
:set nohlsearch
:set noincsearch
:set nois
:set paste
:syntax off
""" disable autocomments
:au FileType * setl fo-=cro
""" turn off brace match comment matching
set noshowmatch
""" stop autoindent
set noautoindent
:filetype indent off