[zsh] enhanced with zoxide

This commit is contained in:
Simon Cornet 2024-03-25 01:30:33 +01:00
parent 5863ea8b3c
commit 5159856338

View File

@ -1,5 +1,12 @@
{ config, pkgs, ... }:
{
# zoxide
programs.zoxide = {
enable = true;
enableZshIntegration = true;
options = [ "--cmd cd" ];
};
# zsh
programs.zsh = {