Helix config

This commit is contained in:
maurice
2025-10-28 09:26:03 +01:00
parent cd129f21f7
commit 0aba432076
3 changed files with 17 additions and 0 deletions

View File

@@ -18,6 +18,7 @@ RUN mkdir .config .local .cache
COPY --chown=user:user config/bashrc .bashrc
COPY --chown=user:user config/git .config/git/config
COPY --chown=user:user config/helix/ .config/helix/
COPY config/bin /usr/local/bin
# === Add host entry for podman ===

View File

@@ -0,0 +1,4 @@
theme = "dark_plus"
[editor.file-picker]
hidden = false

View File

@@ -0,0 +1,12 @@
# C#
[language-server.omnisharp]
command = "/home/user/.omnisharp/OmniSharp"
args = [ "--languageserver" ]
# Rust
[language-server.rust-analyzer.config.check]
command = "clippy"
[[language]]
name = "rust"
formatter = { command = "rustfmt" }