init
This commit is contained in:
commit
03d3e82120
7 changed files with 444 additions and 0 deletions
50
coc-settings.json
Normal file
50
coc-settings.json
Normal file
|
|
@ -0,0 +1,50 @@
|
|||
{
|
||||
"suggest.enablePreselect": false,
|
||||
"suggest.noselect": true,
|
||||
"languageserver": {
|
||||
"ccls": {
|
||||
"command": "ccls",
|
||||
"filetypes": [
|
||||
"c",
|
||||
"cpp",
|
||||
"objc",
|
||||
"objcpp"
|
||||
],
|
||||
"rootPatterns": [
|
||||
".ccls",
|
||||
"compile_commands.json",
|
||||
".vim/",
|
||||
".git/",
|
||||
".hg/"
|
||||
],
|
||||
"initializationOptions": {
|
||||
"cache": {
|
||||
"directory": "/tmp/ccls"
|
||||
}
|
||||
}
|
||||
},
|
||||
"julia": {
|
||||
"command": "/usr/bin/julia",
|
||||
"args" : [
|
||||
"--startup-file=no", "--history-file=no", "-e",
|
||||
"using LanguageServer; using Pkg; import StaticLint; import SymbolServer; env_path = dirname(Pkg.Types.Context().env.project_file); server = LanguageServer.LanguageServerInstance(stdin, stdout, env_path, \"\"); server.runlinter = true; run(server);"
|
||||
],
|
||||
"filetypes": ["julia"]
|
||||
},
|
||||
"lua": {
|
||||
"command": "lua-language-server",
|
||||
"args": [],
|
||||
"rootPatterns": [".git"],
|
||||
"filetypes": ["lua"]
|
||||
}
|
||||
},
|
||||
"d.servedPath": "/usr/local/bin/serve-d",
|
||||
"d.dcdServerPath": "/home/eiko/.local/share/code-d/bin/dcd-server",
|
||||
"d.dcdClientPath": "/home/eiko/.local/share/code-d/bin/dcd-client",
|
||||
"dscanner.ignoredKeys": [
|
||||
"dscanner.suspicious.unused_parameter",
|
||||
"dscanner.style.long_line",
|
||||
"dscanner.style.phobos_naming_convention",
|
||||
"dscanner.style.number_literals"
|
||||
]
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue