diff options
| author | Marc André Tanner <mat@brain-dump.org> | 2017-06-27 20:30:23 +0200 |
|---|---|---|
| committer | Marc André Tanner <mat@brain-dump.org> | 2017-06-27 20:30:23 +0200 |
| commit | dfe9937786a5183952bb464901da9ba951e71652 (patch) | |
| tree | f8875f2d89d852095307b9163297ff9ec94833aa /lua/themes | |
| parent | 56f198904932a87952d89f0d13b30ba229901a83 (diff) | |
| parent | 03ceb7943b7f28c0b52803d64f956ca549e2cc03 (diff) | |
| download | vis-dfe9937786a5183952bb464901da9ba951e71652.tar.gz vis-dfe9937786a5183952bb464901da9ba951e71652.tar.xz | |
Merge branch 'theme-tweaks-2' of https://github.com/p-e-w/vis
Conflicts:
view.c
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 |
