diff options
Diffstat (limited to 'lua/themes')
| -rw-r--r-- | lua/themes/dark-16.lua | 1 | ||||
| -rw-r--r-- | lua/themes/light-16.lua | 1 | ||||
| -rw-r--r-- | lua/themes/solarized.lua | 3 |
3 files changed, 4 insertions, 1 deletions
diff --git a/lua/themes/dark-16.lua b/lua/themes/dark-16.lua index fcfc1f8..fd7e1db 100644 --- a/lua/themes/dark-16.lua +++ b/lua/themes/dark-16.lua @@ -24,6 +24,7 @@ lexers.STYLE_EMBEDDED = 'back:blue,bold' lexers.STYLE_IDENTIFIER = 'fore:white' lexers.STYLE_LINENUMBER = 'fore:white' +lexers.STYLE_LINENUMBER_CURSOR = lexers.STYLE_LINENUMBER lexers.STYLE_CURSOR = 'reverse' lexers.STYLE_CURSOR_PRIMARY = lexers.STYLE_CURSOR..',fore:yellow' lexers.STYLE_CURSOR_LINE = 'underlined' diff --git a/lua/themes/light-16.lua b/lua/themes/light-16.lua index cf72f7f..53d0e45 100644 --- a/lua/themes/light-16.lua +++ b/lua/themes/light-16.lua @@ -24,6 +24,7 @@ lexers.STYLE_EMBEDDED = 'back:blue,bold' lexers.STYLE_IDENTIFIER = 'fore:black' lexers.STYLE_LINENUMBER = 'fore:black' +lexers.STYLE_LINENUMBER_CURSOR = lexers.STYLE_LINENUMBER lexers.STYLE_CURSOR = 'reverse' lexers.STYLE_CURSOR_PRIMARY = lexers.STYLE_CURSOR..',fore:yellow' lexers.STYLE_CURSOR_LINE = 'underlined' diff --git a/lua/themes/solarized.lua b/lua/themes/solarized.lua index 559902c..a5d4c4d 100644 --- a/lua/themes/solarized.lua +++ b/lua/themes/solarized.lua @@ -46,11 +46,12 @@ lexers.STYLE_PREPROCESSOR = 'fore:'..colors.orange lexers.STYLE_TAG = 'fore:'..colors.red lexers.STYLE_TYPE = 'fore:'..colors.yellow lexers.STYLE_VARIABLE = 'fore:'..colors.blue -lexers.STYLE_WHITESPACE = '' +lexers.STYLE_WHITESPACE = 'fore:'..colors.base01 lexers.STYLE_EMBEDDED = 'back:blue' lexers.STYLE_IDENTIFIER = fg lexers.STYLE_LINENUMBER = 'fore:'..colors.base00..',back:'..colors.base02 +lexers.STYLE_LINENUMBER_CURSOR = 'back:'..colors.base00..',fore:'..colors.base02 lexers.STYLE_CURSOR = 'fore:'..colors.base03..',back:'..colors.base0 lexers.STYLE_CURSOR_PRIMARY = lexers.STYLE_CURSOR..',back:yellow' lexers.STYLE_CURSOR_LINE = 'back:'..colors.base02 |
