From e92d92afe0a809cd0d86b0bb47a4719c318784c0 Mon Sep 17 00:00:00 2001 From: Eryn Wells Date: Thu, 13 Jul 2023 07:52:28 -0700 Subject: [PATCH] [vim] Remove highlights and hlsearch settings from vimrc.common --- vimrc.common | 15 --------------- 1 file changed, 15 deletions(-) diff --git a/vimrc.common b/vimrc.common index 78cdea2..653b85e 100644 --- a/vimrc.common +++ b/vimrc.common @@ -182,11 +182,6 @@ endfunction " Key Mappings {{{ let mapleader=',' -" hide search terms -nnoremap :setlocal invhlsearch -" find all -nnoremap fa :%s/\v - " strip all trailing whitespace in the current file nnoremap W :call strip_trailing_whitespace() @@ -221,16 +216,6 @@ nnoremap gV `[v`] "highlight clear SignColumn "nnoremap gg :ToggleGitGutter -" Don't underline folded lines -"highlight Folded cterm=bold term=bold ctermfg=NONE ctermbg=NONE - -" Line numbers are a touch darker... -"highlight LineNr ctermfg=8 ctermbg=0 - -" Don't underline the CursorLine in color terminals; use dark black. -"highlight CursorLine term=underline cterm=NONE ctermbg=0 -"highlight CursorLineNr term=underline cterm=NONE ctermfg=7 ctermbg=0 - " Autocommands {{{ if has('autocmd') filetype plugin indent on