-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcoc-settings.json
96 lines (90 loc) · 3.14 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
{
"list.insertMappings": {
"<Tab>": "do:togglemode"
},
"list.normalMappings": {
"<Tab>": "do:togglemode"
},
"suggest.enablePreview": true,
"diagnostic.displayByAle": true,
"coc.source.issues.shortcut": "[Issue]",
"coc.source.issues.filetypes": [
"gitcommit"
],
"coc.source.vimtex.filetypes": [
"tex",
"plaintex",
"latex",
"markdown"
],
"yank.highlight.enable": false,
"yank.list.maxsize": 1000,
"markdown-preview-enhanced.enableScriptExecution": true,
"markdown-preview-enhanced.previewTheme": "one-light.css",
"markdown-preview-enhanced.codeBlockTheme": "auto.css",
"markdown-preview-enhanced.mathRenderingOption": "KaTeX",
"markdown-preview-enhanced.printBackground": true,
"markdown-preview-enhanced.useGitHubStylePipedLink": true,
"markdown-preview-enhanced.configPath": "${userHome}/vimfiles/extra/.mume",
"markdown-preview-enhanced.enableEmojiSyntax": true,
"markdown-preview-enhanced.enableCriticMarkupSyntax": true,
"markdown-preview-enhanced.enableExtendedTableSyntax": true,
"markdown-preview-enhanced.enableLinkify": true,
"markdown-preview-enhanced.enableTypographer": true,
"markdown-preview-enhanced.mathInlineDelimiters": [
[
"$",
"$"
],
[
"\\(",
"\\)"
]
],
"markdown-preview-enhanced.mathBlockDelimiters": [
[
"$$",
"$$"
],
[
"\\[",
"\\]"
]
],
"languageserver": {
"lsp-ahk2": {
"module": "${userHome}/vimfiles/extra/vscode-autohotkey2-lsp/server/dist/server.js",
"filetypes": ["autohotkey"],
"args": ["--node-ipc"],
"initializationOptions": {
"locale": "zh-cn",
"AutoLibInclude": "All",
"CommentTags": "^;;\\s*(?<tag>.+)",
"CompleteFunctionParens": false,
"Diagnostics": {
"ClassStaticMemberCheck": true,
"ParamsCheck": true
},
"ActionWhenV1IsDetected": "Continue",
"FormatOptions": {
"break_chained_methods": false,
"ignore_comment": false,
"indent_string": " ",
"keep_array_indentation": true,
"max_preserve_newlines": 2,
"brace_style": "One True Brace",
"preserve_newlines": true,
"space_after_double_colon": true,
"space_before_conditional": true,
"space_in_empty_paren": false,
"space_in_other": true,
"space_in_paren": false,
"wrap_line_length": 0
},
"InterpreterPath": "C:/Program Files/AutoHotkey/v2/AutoHotkey.exe",
"WorkingDirs": [],
"SymbolFoldingFromOpenBrace": false
}
}
}
}