24 lines
454 B
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"]
|
|
}
|
|
}
|
|
}
|