adbasic.lua (1101B)
1 -- Minimal color scheme 2 local lexers = vis.lexers 3 -- adbasic 4 lexers.STYLE_DEFAULT ='' 5 lexers.STYLE_NOTHING = '' 6 lexers.STYLE_CLASS = 'bold' 7 lexers.STYLE_COMMENT = 'bold' 8 lexers.STYLE_CONSTANT = '' 9 lexers.STYLE_DEFINITION = '' 10 lexers.STYLE_ERROR = 'fore:red' 11 lexers.STYLE_FUNCTION = '' 12 lexers.STYLE_KEYWORD = '' 13 lexers.STYLE_LABEL = '' 14 lexers.STYLE_NUMBER = '' 15 lexers.STYLE_OPERATOR = '' 16 lexers.STYLE_REGEX = '' 17 lexers.STYLE_STRING = '' 18 lexers.STYLE_PREPROCESSOR = '' 19 lexers.STYLE_TAG = '' 20 lexers.STYLE_TYPE = '' 21 lexers.STYLE_VARIABLE = '' 22 lexers.STYLE_WHITESPACE = '' 23 lexers.STYLE_EMBEDDED = '' 24 lexers.STYLE_IDENTIFIER = '' 25 26 lexers.STYLE_LINENUMBER = '' 27 lexers.STYLE_LINENUMBER_CURSOR = lexers.STYLE_LINENUMBER 28 lexers.STYLE_CURSOR = 'reverse' 29 lexers.STYLE_CURSOR_PRIMARY = lexers.STYLE_CURSOR..',fore:yellow' 30 lexers.STYLE_CURSOR_LINE = 'underlined' 31 lexers.STYLE_COLOR_COLUMN = 'back:#999999' 32 lexers.STYLE_SELECTION = 'back:white' 33 lexers.STYLE_STATUS = 'fore:#555555' 34 lexers.STYLE_STATUS_FOCUSED = '' 35 lexers.STYLE_SEPARATOR = lexers.STYLE_DEFAULT 36 lexers.STYLE_INFO = 'yellow,bold' 37 lexers.STYLE_EOF = ''