1
0
Files
nvim-config/coc-settings.json

24 lines
454 B
JSON
Raw Permalink Normal View History

{
2022-05-03 11:56:50 +02:00
"languageserver": {
"rust": {
2025-03-26 14:20:41 +01:00
"command": "/usr/bin/rust-analyzer",
2022-05-03 11:56:50 +02:00
"filetypes": ["rust"],
"rootPatterns": ["Cargo.toml"]
},
"latex": {
"command": "/sbin/texlab",
"filetypes": [ "tex","bib","plaintex","context" ]
2024-06-04 11:05:21 +02:00
},
"bash": {
"command": "bash-language-server",
"args": ["start"],
"filetypes": ["sh","bash"]
2025-10-22 08:16:59 +02:00
},
2025-10-19 19:47:23 +02:00
"golang": {
"command": "gopls",
"rootPatterns": ["go.mod"],
"filetypes": ["go"]
2022-05-03 11:56:50 +02:00
}
}
}