qenya/zsh: don't clobber with mv or rename

This commit is contained in:
Katherina Walshe-Grey 2024-10-02 17:04:27 +01:00
parent 5a617f9cb3
commit cdcdccb465

View file

@ -10,6 +10,11 @@
shellAliases = { shellAliases = {
ll = "ls -l"; ll = "ls -l";
# don't clobber
mv = "mv -i";
rename = "rename -i";
nix-shell = ''nix-shell --command "zsh"''; # TODO: tweak theme to display something when inside nix-shell nix-shell = ''nix-shell --command "zsh"''; # TODO: tweak theme to display something when inside nix-shell
}; };