mirror of
https://github.com/prurigro/darkcloud-nvimconfig.git
synced 2024-11-09 15:06:38 -05:00
Disabled the blinking cursor in the GUI, made the cursor color more
visible on inverted colours, and configured the match parenthesis colours to resemble the currently selected cursor.
This commit is contained in:
parent
f2069f939b
commit
36505ed9b5
2 changed files with 3 additions and 2 deletions
|
@ -279,14 +279,14 @@ call s:X("PmenuSel","87d7ff","4e4e4e","bold","White","Black")
|
|||
call s:X("CursorLine","","303030","","",s:termBlack)
|
||||
call s:X("CursorLineNr","000000","87d7ff","bold",s:termBlack,"Blue")
|
||||
call s:X("CursorColumn","","303030","","",s:termBlack)
|
||||
call s:X("MatchParen","","000000","standout","","000000")
|
||||
call s:X("MatchParen","000000","87d7ff","bold",s:termBlack,"Blue")
|
||||
|
||||
call s:X("TabLine","","000000","","",s:termBlack)
|
||||
call s:X("TabLineFill","","000000","","",s:termBlack)
|
||||
call s:X("TabLineSel","000000","ffffff","",s:termBlack,"White")
|
||||
|
||||
call s:X("Visual","","000000","standout","",s:termBlack)
|
||||
call s:X("Cursor","000000","ffff00","underline",s:termBlack,"Yellow")
|
||||
call s:X("Cursor","000000","87d7ff","underline",s:termBlack,"Blue")
|
||||
|
||||
call s:X("LineNr","ffaf00","","","Red","")
|
||||
call s:X("Comment","626262","","","Grey","")
|
||||
|
|
|
@ -50,6 +50,7 @@
|
|||
set smarttab expandtab autoindent tabstop=4 shiftwidth=4 "configure tabs
|
||||
set laststatus=2 showcmd statusline=%F%m%r%h%w[%L][%{&ff}]%y[%p%%][%04l,%04v] "statusline init and config
|
||||
set hlsearch incsearch ignorecase smartcase "configure search
|
||||
set guicursor+=a:blinkon0 "disable the blinking cursor
|
||||
|
||||
"load the system version of matchit if another hasn't already been
|
||||
if !exists('g:loaded_matchit') && findfile('plugin/matchit.vim', &rtp) ==# ''
|
||||
|
|
Loading…
Reference in a new issue