dotfiles/.config/helix/languages.toml

27 lines
463 B
TOML
Raw Permalink Normal View History

2026-03-09 00:07:31 -04:00
# 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"