27 lines
463 B
TOML
27 lines
463 B
TOML
# See:
|
|
# https://docs.helix-editor.com/master/languages.html
|
|
# https://github.com/helix-editor/helix/blob/master/languages.toml
|
|
|
|
|
|
# rust
|
|
[[language]]
|
|
name = "rust"
|
|
auto-format = true
|
|
|
|
[language-server.rust-analyzer]
|
|
command = "rust-analyzer"
|
|
|
|
[language-server.rust-analyzer.config.check]
|
|
command = "clippy"
|
|
|
|
# cpp
|
|
[[language]]
|
|
name = "cpp"
|
|
|
|
[language-server.clangd]
|
|
command = "clangd"
|
|
args = ["--compile-commands-dir", ".cmake"]
|
|
|
|
[[language]]
|
|
name = "python"
|