Cursor color is changed according to editor mode.

The same color as status-line are used for normal and insert modes
This commit is contained in:
Fanda Vacek 2023-06-23 19:16:16 +02:00
parent eb81cf3c01
commit e0b4d083e8

View File

@ -37,7 +37,11 @@
# Interface
"ui.background"= { bg = "background" }
"ui.cursor" = { fg = "dark_gray", bg = "yellow" }
"ui.cursor.normal" = { fg = "dark_gray", bg = "light-blue" }
"ui.cursor.insert" = { fg = "dark_gray", bg = "yellow" }
"ui.cursor.primary" = { fg = "dark_gray", bg = "orange" }
"ui.cursor.primary.normal" = { fg = "dark_gray", bg = "blue" }
"ui.cursor.primary.insert" = { fg = "dark_gray", bg = "orange" }
"ui.cursor.match" = "orange"
"ui.linenr" = "dark_gray"
"ui.linenr.selected" = "gray"