diff --git a/.config/fish/config.fish b/.config/fish/config.fish index 104e557..be7da55 100644 --- a/.config/fish/config.fish +++ b/.config/fish/config.fish @@ -34,6 +34,8 @@ if status is-interactive abbr -ag pps "podman ps --format '{{.Names}}'" + abbr -ag bacon "bacon -j clippy" + # Functions ## Replacements function cd -w z diff --git a/.config/helix/languages.toml b/.config/helix/languages.toml index 686ae0d..ee487e6 100644 --- a/.config/helix/languages.toml +++ b/.config/helix/languages.toml @@ -2,6 +2,8 @@ name = "rust" language-server = { command = "rustup", args = ["run", "stable", "rust-analyzer"] } auto-format = true +[language.config.checkOnSave] +command = "clippy" [[language]] name = "python"