From 6d106b954d38e43f4d9adcf8c44ec9c1c31956f8 Mon Sep 17 00:00:00 2001 From: Martin Pander Date: Fri, 26 Apr 2024 15:03:58 +0200 Subject: [PATCH] Add zoxide --- nix/user/profiles/work.nix | 1 + nix/user/sh.nix | 8 ++++++++ 2 files changed, 9 insertions(+) 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;