-
Notifications
You must be signed in to change notification settings - Fork 22
Expand file tree
/
Copy pathneovim.json
More file actions
77 lines (77 loc) · 2.48 KB
/
neovim.json
File metadata and controls
77 lines (77 loc) · 2.48 KB
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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
{
"highlights": {
"comment.block.documentation": "comment.documentation",
"comment.line": "comment",
"constant.builtin.boolean": "boolean",
"constant.character": "character",
"constant.character.escape": "",
"constant.numeric.float": "number.float",
"constant.numeric.integer": "number",
"constructor": "constructor",
"function": "function",
"function.builtin": "keyword.debug",
"function.method": "function.method.call",
"ignoreme.module": "module",
"keyword.control": "keyword",
"keyword.control.conditional": "keyword.conditional",
"keyword.control.import": "keyword.import",
"keyword.control.return": "",
"keyword.operator": "",
"module": "module",
"namespace": "module",
"namespace.roc-special.builtin": "module",
"operator": "operator",
"punctuation.bracket": "punctuation.bracket",
"punctuation.bracket.roc-special.in-typedef": "punctuation.bracket",
"punctuation.delimiter": "punctuation.delimiter",
"punctuation.delimiter.roc-special.in-typedef": "punctuation.delimiter",
"punctuation.special": "",
"special.roc-special.exposed": "",
"special.roc-special.package": "",
"special.roc-special.provided": "",
"string": "string",
"string.special.url": "string",
"type": "type",
"type.builtin": "type",
"type.definition": "type",
"type.enum.variant": "constructor",
"type.parameter": "type",
"type.roc-special.inferred": "type",
"variable": "variable",
"variable.other.member": "variable.member",
"variable.other.member.roc-special.in-typedef": "variable.member",
"variable.parameter": "variable.parameter"
},
"indents": {
"indent": "indent.begin"
},
"injections": {
"injection.content": "injection.content",
"injection.language": "injection.language"
},
"locals": {
"local.definition.variable.parameter": "local.definition",
"local.reference": "local.reference",
"local.scope": "local.scope"
},
"textobjects": {
"class.around": "class.outer",
"class.inside": "class.inner",
"comment.around": "comment.outer",
"function.around": "function.outer",
"function.inside": "function.inner",
"parameter.around": "parameter.outer",
"parameter.inside": "parameter.inner",
"test.around": "",
"test.inside": ""
},
"tags": {
"definition.function": "",
"name": "",
"reference.call": ""
},
"rainbows": {
"rainbow.scope": "rainbow.scope",
"rainbow.bracket": "rainbow.bracket"
}
}