-
Notifications
You must be signed in to change notification settings - Fork 0
/
coc-settings.json
102 lines (102 loc) · 2.84 KB
/
coc-settings.json
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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
{
"[brazil-config]": {
"semanticTokens.enable": true
},
"cSpell.enabled": false,
"cSpell.language": "en-US",
"coc.preferences.messageLevel": "error",
"explorer.file.reveal.auto": true,
"explorer.file.root.template": "[icon] Project [hidden & 1][root]",
"explorer.focus": true,
"explorer.icon.enableNerdfont": true,
"explorer.icon.source": "nvim-web-devicons",
"explorer.keyMappings.global": {
"*": "toggleSelection",
"<2-LeftMouse>": ["expandable?", ["expanded?", "collapse", "expand"], "open" ],
"<<": "gitStage",
"<cr>": ["wait", "expandable?", "cd", "open"],
"<esc>": "esc",
"<tab>": "open:vsplit",
">>": "gitUnstage",
"A": "addDirectory",
"R": "rename",
"dd": "cutFile",
"df": "delete",
"e": "open",
"f": "searchRecursive",
"g<dot>": "toggleHidden",
"i": false,
"l": ["wait", "expandable?", "expand", "open"],
"m": "actionMenu",
"o": ["wait", "expanded?", "collapse", "expand"],
"p": "pasteFile",
"q": ["clearCopyOrCut", "quit"],
"r": "refresh",
"s": "open:vsplit",
"t": false,
"u": ["wait", "gotoParent"],
"yn": "copyFilename",
"yp": "copyFilepath",
"yy": "copyFile"
},
"explorer.mouseMode": "singleclick",
"explorer.position": "left",
"explorer.quitOnOpen": false,
"explorer.root.customRules": {
"vcs": {
"patterns": [".git", ".hg", ".projections.json"]
},
"vcs-r": {
"bottomUp": true,
"patterns": [".git", ".hg", ".projections.json"]
}
},
"explorer.root.strategies": ["workspace", "custom:vcs", "custom:vcs-r"],
"explorer.sources": [
{
"expand": true,
"name": "file"
}
],
"explorer.width": 50,
"java.autobuild.enabled": false,
"java.jdt.ls.vmargs": "-javaagent:/home/brajit/.local/lib/lombok.jar",
"languageserver": {
"brazil-config": {
"command": "barium",
"filetypes": ["brazil-config"]
}
},
"typescript.updateImportsOnFileMove.enable": true,
"yaml.customTags": [
"!And",
"!And sequence",
"!Base64",
"!If",
"!If sequence",
"!Not",
"!Not sequence",
"!Equals",
"!Equals sequence",
"!Or",
"!Or sequence",
"!FindInMap",
"!FindInMap sequence",
"!Base64",
"!Join",
"!Join sequence",
"!Cidr",
"!Ref",
"!Sub",
"!Sub sequence",
"!GetAtt",
"!GetAZs",
"!ImportValue",
"!ImportValue sequence",
"!Select",
"!Select sequence",
"!Split",
"!Split sequence"
],
"snippets.ultisnips.pythonPrompt": false
}