From 5159856338db134d92aba8783cd669e7c1fe6ad2 Mon Sep 17 00:00:00 2001 From: Simon Cornet Date: Mon, 25 Mar 2024 01:30:33 +0100 Subject: [PATCH] [zsh] enhanced with zoxide --- nix/home/zsh/zsh.nix | 7 +++++++ 1 file changed, 7 insertions(+) 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 = {