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

19 lines
412 B
JSON
Raw Normal View History

{
2022-05-03 11:56:50 +02:00
"languageserver": {
"rust": {
2024-05-22 17:25:08 +02:00
"command": "/home/nicolas/.rustup/toolchains/stable-x86_64-unknown-linux-gnu/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"]
2022-05-03 11:56:50 +02:00
}
}
}