Initial commit

This commit is contained in:
2025-06-05 13:35:52 +08:00
commit 9a8e04f76c
5 changed files with 607 additions and 0 deletions

35
coc-settings.json Normal file
View File

@ -0,0 +1,35 @@
{
"coc.preferences.jumpCommand": "drop",
"list.normalMappings": {
"e": "action:drop"
},
"go.goplsPath": "/home/edgar/.local/share/gopath/bin/gopls",
"go.goplsUseDaemon": true,
"go.goplsOptions": {
"semanticTokens": true
},
"clangd.disableSnippetCompletion": false,
"rust-analyzer.server.path": "/usr/bin/rust-analyzer",
"rust-analyzer.diagnostics.warningsAsInfo": ["unused_imports"],
"semanticTokens.enable":true,
"java.configuration.runtimes": [
{
"name": "JavaSE-17",
"path": "/usr/lib/jvm/java-17-openjdk/",
"default": true
}
],
"texlab.chktex.onEdit": false,
"texlab.chktex.onOpenAndSave": false,
"texlab.latexFormatter": "none",
"typescript.format.enable": false,
"languageserver": {
"Dotnet": {
"command": "csharp-ls",
"filetypes": ["cs"],
"args": [],
"progressOnInitialization": true,
"revealOutputChannelOn": "warn"
}
}
}