Compare commits

..

4 commits

Author SHA1 Message Date
Kevin MacMartin
c39a2c9fa4 Use standout text instead of black on white for search highlight 2024-03-15 16:38:12 -04:00
Kevin MacMartin
473c657cf6 Update submodules 2024-03-15 16:16:35 -04:00
Kevin MacMartin
d787ebc756 Style the quickfix list so it looks a bit nicer 2024-03-15 16:13:16 -04:00
Kevin MacMartin
5c40f3e762 Use case insensitive search by default again (and add /C to make it case sensitive) 2024-03-15 16:12:14 -04:00
4 changed files with 8 additions and 4 deletions

@ -1 +1 @@
Subproject commit 3ae78f376c2e721ce4feb23e9a5e8bc6062a2657
Subproject commit f87882858438834d2fbb6379aa2be37de901751b

@ -1 +1 @@
Subproject commit ecf8c8890d95991959606c6c8ab69b377c84ea90
Subproject commit 635ad3d1a29619036014a8feca226356767e5fca

View file

@ -92,13 +92,17 @@ endfun
call s:C("PmenuSel",g:cBlue,g:cLightBg,"bold")
"search
call s:C("Search",g:cBlack,g:cWhite,"bold")
call s:C("Search","","","standout")
hi! link IncSearch Search
hi! link IncSearchMatch Search
hi! link IncSearchMatchReverse Search
hi! link IncSearchOnCursor IncSearch
hi! link IncSearchCursor IncSearch
"quickfix
call s:C("QuickFixLine","","","bold,underline")
call s:C("qfLineNr",g:cYellow,"","")
"status line
call s:C("StatusLine","",g:cLightBg,"")
hi! link StatusLineNC StatusLine

View file

@ -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