diff --git a/nix/home/zsh/zsh.nix b/nix/home/zsh/zsh.nix index 73c4049..a48f7e7 100644 --- a/nix/home/zsh/zsh.nix +++ b/nix/home/zsh/zsh.nix @@ -1,5 +1,12 @@ { config, pkgs, ... }: { + + # zoxide + programs.zoxide = { + enable = true; + enableZshIntegration = true; + options = [ "--cmd cd" ]; + }; # zsh programs.zsh = {