From 959a0952b00c243ee85b5c5d95108054ddc58ee8 Mon Sep 17 00:00:00 2001 From: kento2 Date: Fri, 10 Apr 2026 14:24:32 +0200 Subject: [PATCH] clearer highlighting color in vis --- files/.config/vis/themes/kento2.lua | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/files/.config/vis/themes/kento2.lua b/files/.config/vis/themes/kento2.lua index 3f5ea5e..31f83f8 100644 --- a/files/.config/vis/themes/kento2.lua +++ b/files/.config/vis/themes/kento2.lua @@ -48,7 +48,7 @@ lexers.STYLE_TAG = 'fore:'..colors.bblk -- tag names, `<_div_ class="foo">` lexers.STYLE_TYPE = 'fore:'..colors.bgrn -- types, `_int_ foo = 0` lexers.STYLE_VARIABLE = lexers.STYLE_DEFAULT -- variable names, `int _foo_ = 0` lexers.STYLE_WHITESPACE = 'fore:'..colors.blk -- whitespaces -lexers.STYLE_EMBEDDED = 'back:'..colors.dim1 -- embedded code +lexers.STYLE_EMBEDDED = 'back:'..colors.dim2 -- embedded code lexers.STYLE_IDENTIFIER = lexers.STYLE_DEFAULT -- unclassified names -- UI styles @@ -58,7 +58,7 @@ lexers.STYLE_CURSOR = 'fore:'..colors.fg..',reverse' -- cursor color lexers.STYLE_CURSOR_PRIMARY = lexers.STYLE_CURSOR lexers.STYLE_CURSOR_LINE = 'back:'..colors.dim1 -- cursor line lexers.STYLE_COLOR_COLUMN = lexers.STYLE_CURSOR_LINE -- color column -lexers.STYLE_SELECTION = lexers.STYLE_CURSOR_LINE -- visual selection +lexers.STYLE_SELECTION = 'back:'..colors.ylw -- visual selection lexers.STYLE_STATUS = 'fore:'..colors.bblk..',back:'..colors.dim2 -- inactive statusline lexers.STYLE_STATUS_FOCUSED = 'fore:'..colors.fg..',back:'..colors.dim2 -- active statusline lexers.STYLE_SEPARATOR = lexers.STYLE_COMMENT -- vertical split color