From 5c40f3e762e9cd29136c47335ce3bc025b3d448a Mon Sep 17 00:00:00 2001 From: Kevin MacMartin Date: Fri, 15 Mar 2024 16:12:14 -0400 Subject: [PATCH] Use case insensitive search by default again (and add /C to make it case sensitive) --- vim/config/settings.vim | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vim/config/settings.vim b/vim/config/settings.vim index 927ad68..2e62cec 100644 --- a/vim/config/settings.vim +++ b/vim/config/settings.vim @@ -99,7 +99,7 @@ set history=250 "size of the undo history set whichwrap=b,s,<,>,[,] "scrolling left/right off current line wraps to the next/previous set smarttab expandtab autoindent tabstop=4 shiftwidth=4 "configure tabs - set hlsearch incsearch smartcase "configure how search behaves + set hlsearch incsearch ignorecase smartcase "configure how search behaves set timeout timeoutlen=500 "how long before timing out for mappings set ttimeout ttimeoutlen=100 "how long before timing out for terminal key codes set nomodeline "disable the use of file-based modelines as these are insecure