blob: be71bd9659fc22e1d7e8b77e942fba2af11e1f3a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
|
local lexers = vis.lexers
local lightyellow = '221'
local lightgray = '144'
local darkgray = '234'
lexers.STYLE_DEFAULT = 'back:000000,fore:white'
lexers.STYLE_NOTHING = 'back:black'
lexers.STYLE_CLASS = 'fore:cyan,bold'
lexers.STYLE_COMMENT = 'fore:white'
lexers.STYLE_CONSTANT = 'fore:cyan'
lexers.STYLE_DEFINITION = 'fore:white'
lexers.STYLE_ERROR = 'fore:red'
lexers.STYLE_FUNCTION = 'fore:'..lightyellow
lexers.STYLE_KEYWORD = 'fore:red'
lexers.STYLE_LABEL = 'fore:white'
lexers.STYLE_NUMBER = 'fore:magenta'
lexers.STYLE_OPERATOR = 'fore:white'
lexers.STYLE_REGEX = 'fore:white'
lexers.STYLE_STRING = 'fore:green'
lexers.STYLE_PREPROCESSOR = 'fore:white'
lexers.STYLE_TAG = 'fore:white'
lexers.STYLE_TYPE = 'fore:cyan,bold'
lexers.STYLE_VARIABLE = 'fore:white'
lexers.STYLE_WHITESPACE = ''
lexers.STYLE_EMBEDDED = 'fore:white'
lexers.STYLE_IDENTIFIER = 'fore:blue'
lexers.STYLE_LINENUMBER = 'fore:white'
lexers.STYLE_LINENUMBER_CURSOR = lexers.STYLE_LINENUMBER
lexers.STYLE_CURSOR = 'reverse'
lexers.STYLE_CURSOR_PRIMARY = lexers.STYLE_CURSOR..',fore:cyan'
lexers.STYLE_CURSOR_LINE = 'underlined'
lexers.STYLE_COLOR_COLUMN = 'back:black'
lexers.STYLE_SELECTION = 'fore:black,back:yellow'
lexers.STYLE_STATUS = 'fore:'..darkgray..',back:'..lightgray
lexers.STYLE_STATUS_FOCUSED = 'fore:'..darkgray..',back:'..lightgray..',bold'
lexers.STYLE_SEPARATOR = lexers.STYLE_DEFAULT
lexers.STYLE_INFO = 'fore:default,back:default,bold'
lexers.STYLE_EOF = ''
|