Add zoxide and add zoxide support in lf

This commit is contained in:
Julia Lange 2024-04-18 00:53:41 -07:00
parent 42a5498417
commit 6d463dc0c5
4 changed files with 33 additions and 4 deletions

View file

@ -0,0 +1,16 @@
{ config, pkgs, lib, ... }:
{
options.zoxide = {
enable = lib.mkEnableOption "Enables Zoxide";
};
config = lib.mkIf config.zoxide.enable {
programs.zoxide = {
enable = true;
options = [
"--cmd cd"
];
};
};
}