3 Commits

Author SHA1 Message Date
kenji ab6eb6db5b fixed lots of stuff 2025-12-23 19:48:09 +00:00
kenji a036da9b76 removed other integration for zoxide 2025-12-23 19:43:57 +00:00
kenji b796260c7e removed cd alias (did not work) 2025-12-23 19:43:41 +00:00
3 changed files with 5 additions and 5 deletions
+1 -1
View File
@@ -9,7 +9,7 @@
set fish_greeting
fish_vi_key_bindings
zoxide init fish | source
zoxide init fish --cmd cd | source
'';
shellAliases = myConfig.terminal.aliases;
+3 -2
View File
@@ -2,7 +2,8 @@
programs.zoxide = {
enable = true;
enableFishIntegration = true;
enableZshIntegration = true;
enableBashIntegration = true;
options = [
"--cmd cd"
];
};
}
+1 -2
View File
@@ -25,8 +25,7 @@
};
terminal = {
aliases = {
z = "cd";
update = "sudo nixos-rebuild switch ~/.config/nixos-new/#hakase";
update = "sudo nixos-rebuild switch --flake ~/.config/nixos-new/#hakase";
};
};
};