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

24 lines
454 B
JSON

{
"languageserver": {
"rust": {
"command": "/usr/bin/rust-analyzer",
"filetypes": ["rust"],
"rootPatterns": ["Cargo.toml"]
},
"latex": {
"command": "/sbin/texlab",
"filetypes": [ "tex","bib","plaintex","context" ]
},
"bash": {
"command": "bash-language-server",
"args": ["start"],
"filetypes": ["sh","bash"]
},
"golang": {
"command": "gopls",
"rootPatterns": ["go.mod"],
"filetypes": ["go"]
}
}
}