diff --git a/nix/user/profiles/work.nix b/nix/user/profiles/work.nix index 91f070d..5a21078 100644 --- a/nix/user/profiles/work.nix +++ b/nix/user/profiles/work.nix @@ -14,6 +14,7 @@ home.packages = with pkgs; [ yaml-language-server marksman + dockerfile-language-server-nodejs ]; programs.zsh.profileExtra = '' diff --git a/nix/user/sh.nix b/nix/user/sh.nix index 9ca21b5..79d4abd 100644 --- a/nix/user/sh.nix +++ b/nix/user/sh.nix @@ -63,6 +63,14 @@ enableAliases = true; }; + programs.zoxide = { + enable = true; + enableZshIntegration = true; + options = [ + "--cmd cd" + ]; + }; + programs.bat.enable = true; programs.ripgrep.enable = true;