dotfiles

personal dotfiles
git clone anongit@rnpnr.xyz:dotfiles.git
Log | Files | Refs | Feed | Submodules

Commit: a5413260c0c5e0498c6150702bb8697d56768501
Parent: 6f0af48a1e0d9d2b6a0f85d040e909dd2b6d2bd5
Author: Randy Palamar
Date:   Fri, 20 Oct 2023 13:18:28 -0600

vis: term.lua: remove some useless empty colors

Diffstat:
M.config/vis/themes/term.lua | 22+++++++++++-----------
1 file changed, 11 insertions(+), 11 deletions(-)

diff --git a/.config/vis/themes/term.lua b/.config/vis/themes/term.lua @@ -4,8 +4,8 @@ local grey0 = '#555551' lexers.STYLE_DEFAULT = '' lexers.STYLE_NOTHING = '' -lexers.STYLE_ATTRIBUTE = 'fore:,bold' -lexers.STYLE_CLASS = 'fore:,bold' +lexers.STYLE_ATTRIBUTE = 'bold' +lexers.STYLE_CLASS = 'bold' lexers.STYLE_COMMENT = '' lexers.STYLE_CONSTANT = '' lexers.STYLE_DEFINITION = '' @@ -13,23 +13,23 @@ lexers.STYLE_ERROR = 'fore:red' lexers.STYLE_FUNCTION = '' lexers.STYLE_FUNCTION_BUILTIN = lexers.STYLE_FUNCTION lexers.STYLE_FUNCTION_METHOD = lexers.STYLE_FUNCTION -lexers.STYLE_HEADING = 'fore:,bold' -lexers.STYLE_KEYWORD = 'fore:,bold' -lexers.STYLE_LABEL = 'fore:,bold' +lexers.STYLE_HEADING = 'bold' +lexers.STYLE_KEYWORD = 'bold' +lexers.STYLE_LABEL = 'bold' lexers.STYLE_NUMBER = '' lexers.STYLE_OPERATOR = 'fore:green' lexers.STYLE_REGEX = '' lexers.STYLE_STRING = '' -lexers.STYLE_PREPROCESSOR = 'fore:,bold' +lexers.STYLE_PREPROCESSOR = 'bold' lexers.STYLE_TAG = '' -lexers.STYLE_TYPE = 'fore:,bold' +lexers.STYLE_TYPE = 'bold' lexers.STYLE_VARIABLE = '' lexers.STYLE_WHITESPACE = '' lexers.STYLE_EMBEDDED = '' lexers.STYLE_IDENTIFIER = '' lexers.STYLE_LINENUMBER = '' -lexers.STYLE_LINENUMBER_CURSOR = lexers.STYLE_LINENUMBER +lexers.STYLE_LINENUMBER_CURSOR = 'bold' lexers.STYLE_CURSOR = 'reverse' lexers.STYLE_CURSOR_PRIMARY = lexers.STYLE_CURSOR lexers.STYLE_CURSOR_LINE = 'underlined' @@ -38,7 +38,7 @@ lexers.STYLE_SELECTION = 'back:' .. grey0 lexers.STYLE_STATUS = 'fore:black,back:white' lexers.STYLE_STATUS_FOCUSED = lexers.STYLE_STATUS .. ',bold' lexers.STYLE_SEPARATOR = lexers.STYLE_DEFAULT -lexers.STYLE_INFO = 'fore:,back:,bold' +lexers.STYLE_INFO = 'bold' lexers.STYLE_EOF = '' -- diff @@ -56,5 +56,5 @@ lexers.STYLE_ENVIRONMENT_MATH = lexers.STYLE_NUMBER lexers.STYLE_HEADING_H1 = 'fore:cyan,bold' lexers.STYLE_HEADING_H2 = lexers.STYLE_HEADING_H1 lexers.STYLE_HEADING_H3 = lexers.STYLE_HEADING_H1 -lexers.STYLE_BOLD = 'fore:,bold' -lexers.STYLE_ITALIC = 'fore:,italics' +lexers.STYLE_BOLD = 'bold' +lexers.STYLE_ITALIC = 'italics'