vis
a vi-like editor based on Plan 9's structural regular expressions
git clone https://9o.is/git/vis.git
commit 50bd88dc3c090501873177728d65362392d917f9 parent 25df13df416cd8d922ad5746ffe1cef97ff30c82 Author: Philipp Emanuel Weidmann <pew@worldwidemann.com> Date: Sun, 4 Jun 2017 18:14:23 +0530 Improve appearance of line numbers and EOF markers Diffstat:
| M | lua/themes/solarized.lua | | | 4 | ++-- |
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/lua/themes/solarized.lua b/lua/themes/solarized.lua @@ -50,7 +50,7 @@ lexers.STYLE_WHITESPACE = '' lexers.STYLE_EMBEDDED = 'back:blue' lexers.STYLE_IDENTIFIER = fg -lexers.STYLE_LINENUMBER = fg +lexers.STYLE_LINENUMBER = 'fore:'..colors.base00..',back:'..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 @@ -61,4 +61,4 @@ lexers.STYLE_STATUS = 'back:'..colors.base00..',fore:'..colors.base02 lexers.STYLE_STATUS_FOCUSED = 'back:'..colors.base1..',fore:'..colors.base02 lexers.STYLE_SEPARATOR = lexers.STYLE_DEFAULT lexers.STYLE_INFO = 'fore:default,back:default,bold' -lexers.STYLE_EOF = '' +lexers.STYLE_EOF = 'fore:'..colors.base01