-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathcoc-settings.json
More file actions
100 lines (100 loc) · 3.01 KB
/
coc-settings.json
File metadata and controls
100 lines (100 loc) · 3.01 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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
{
"python.formatting.provider": "black",
"python.linting.pylintEnabled": true,
"git.enableGutters": false,
"git.conflict.enabled": true,
"yank.highlight.enable": true,
"yank.highlight.duration": 100,
"explorer.width": 70,
"explorer.previewAction.content.maxHeight": 99,
"explorer.previewAction.onHover": "content",
"explorer.quitOnOpen": true,
"explorer.openAction.strategy": "previousBuffer",
"explorer.root.strategies": ["cwd", "workspace", "sourceBuffer", "reveal"],
"typescript.preferences.importModuleSpecifier": "non-relative",
"typescript.format.insertSpaceAfterOpeningAndBeforeClosingNonemptyBraces": true,
"codeLens.enable": true,
"typescript.implementationsCodeLens.enabled": true,
"typescript.referencesCodeLens.showOnAllFunctions": true,
"vue.codeLens.enabled": true,
"javascript.referencesCodeLens.enabled": true,
"javascript.implementationsCodeLens.enabled": true,
"snippets.priority": 110,
"eslint.format.enable": true,
"eslint.experimental.useFlatConfig": true,
"tailwindCSS.includeLanguages": {
"vue": "html"
},
"snippets.extends": {
"typescriptreact": ["typescript"]
},
"languageserver": {
"ccls": {
"command": "ccls",
"filetypes": ["c", "cpp", "cuda", "objc", "objcpp"],
"rootPatterns": [".ccls-root", "compile_commands.json"],
"initializationOptions": {
"cache": {
"directory": ".ccls-cache"
},
"client": {
"snippetSupport": true
}
}
},
"elmLS": {
"command": "elm-language-server",
"filetypes": ["elm"],
"rootPatterns": ["elm.json"],
"initializationOptions": {
"elmFormatPath": "elm-format",
"elmTestPath": "elm-test",
"elmAnalyseTrigger": "change"
}
},
"bash": {
"command": "bash-language-server",
"args": ["start"],
"filetypes": ["sh"],
"ignoredRootPaths": ["~"]
},
"haskell": {
// downloaded and added to ~/.local/bin from https://github.com/haskell/haskell-language-server#coc
"command": "haskell-language-server-macOS-8.10.4",
"args": ["--lsp"],
"rootPatterns": [
"*.cabal",
"stack.yaml",
"cabal.project",
"package.yaml",
"hie.yaml"
],
"filetypes": ["haskell", "lhaskell"],
"initializationOptions": {
"languageServerHaskell": {
"hlintOn": true
}
}
}
},
"elixir.pathToElixirLS": "~/repos/elixir-ls/release/language_server.sh",
"list.height": 34,
"list.normalMappings": {
"s": "action:vsplit",
"S": "action:split"
},
"list.insertMappings": {
"<C-d>": "do:switch"
},
"list.maxPreviewHeight": 30,
"suggest.timeout": 10000,
"coc.preferences.extensionUpdateCheck": "never",
"prettier.singleQuote": true,
"diagnostic.enable": false,
"diagnostic.virtualText": false,
"diagnostic.virtualTextCurrentLineOnly": true,
"suggest.noselect": true,
"snippets.ultisnips.pythonPrompt": false,
"vitest.watch": true,
"vitest.terminal.enableSplitRight": true
}