From 1cc57721f74830b9104f219cdb909f7e0d1b4428 Mon Sep 17 00:00:00 2001 From: Hyperling Date: Sat, 28 Mar 2026 16:25:19 -0700 Subject: [PATCH] Add full set of vimrc commands from Ansible. --- vimrc.vim | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/vimrc.vim b/vimrc.vim index 8e69006..745f841 100644 --- a/vimrc.vim +++ b/vimrc.vim @@ -1 +1,11 @@ -nnoremap qq :qa! \ No newline at end of file +" Turn off syntax, flashy lights, etc. Make VIM into a basic editor. +syntax off +set nohlsearch +set noautoindent noautowrite noshowmatch wrapmargin=0 report=1 ts=3 +set ignorecase + +" Turn off auto-commenting. +autocmd Filetype * set fo-=c fo-=r fo-=o + +" qq shortcut for immediately exiting all files without saving. +nnoremap qq :qa!