mirror of
https://github.com/prurigro/darkcloud-nvimconfig.git
synced 2024-11-23 20:14:11 -05:00
Compare commits
4 commits
98c76dea47
...
c39a2c9fa4
Author | SHA1 | Date | |
---|---|---|---|
|
c39a2c9fa4 | ||
|
473c657cf6 | ||
|
d787ebc756 | ||
|
5c40f3e762 |
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
|
|
@ -92,13 +92,17 @@ endfun
|
||||||
call s:C("PmenuSel",g:cBlue,g:cLightBg,"bold")
|
call s:C("PmenuSel",g:cBlue,g:cLightBg,"bold")
|
||||||
|
|
||||||
"search
|
"search
|
||||||
call s:C("Search",g:cBlack,g:cWhite,"bold")
|
call s:C("Search","","","standout")
|
||||||
hi! link IncSearch Search
|
hi! link IncSearch Search
|
||||||
hi! link IncSearchMatch Search
|
hi! link IncSearchMatch Search
|
||||||
hi! link IncSearchMatchReverse Search
|
hi! link IncSearchMatchReverse Search
|
||||||
hi! link IncSearchOnCursor IncSearch
|
hi! link IncSearchOnCursor IncSearch
|
||||||
hi! link IncSearchCursor IncSearch
|
hi! link IncSearchCursor IncSearch
|
||||||
|
|
||||||
|
"quickfix
|
||||||
|
call s:C("QuickFixLine","","","bold,underline")
|
||||||
|
call s:C("qfLineNr",g:cYellow,"","")
|
||||||
|
|
||||||
"status line
|
"status line
|
||||||
call s:C("StatusLine","",g:cLightBg,"")
|
call s:C("StatusLine","",g:cLightBg,"")
|
||||||
hi! link StatusLineNC StatusLine
|
hi! link StatusLineNC StatusLine
|
||||||
|
|
|
@ -99,7 +99,7 @@
|
||||||
set history=250 "size of the undo history
|
set history=250 "size of the undo history
|
||||||
set whichwrap=b,s,<,>,[,] "scrolling left/right off current line wraps to the next/previous
|
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 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 timeout timeoutlen=500 "how long before timing out for mappings
|
||||||
set ttimeout ttimeoutlen=100 "how long before timing out for terminal key codes
|
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
|
set nomodeline "disable the use of file-based modelines as these are insecure
|
||||||
|
|
Loading…
Reference in a new issue