Replace cd with z

This commit is contained in:
Lillian Violet 2024-03-04 16:16:34 +01:00
parent b5a046bbf9
commit ff1acef577

View file

@ -11,6 +11,10 @@
enable = true; enable = true;
}; };
environment.interactiveShellInit = ''
alias cd='z'
'';
programs.zsh = { programs.zsh = {
enable = true; enable = true;
plugins = [ plugins = [
@ -89,6 +93,7 @@
"web-search" "web-search"
"zsh-interactive-cd" "zsh-interactive-cd"
"zsh-navigation-tools" "zsh-navigation-tools"
"z"
]; ];
theme = "jtriley"; theme = "jtriley";
}; };