dotfiles/modules/home/common/terminal/shell/aliases.nix
Christopher Mühl d6d1f921e2
Add trash-cli with trash alias
Install trash-cli and alias trash to trash-put for safe file deletion.
Also clean up package comments and remove spacedrive-v2.

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2026-02-18 01:51:15 +01:00

13 lines
381 B
Nix

{lib, ...}: {
home.shellAliases = {
elements = "just -f /nix/elements/Justfile -d /nix/elements";
copy = lib.mkDefault "wl-copy";
ansi = "sed -r \"s/\x1B\[([0-9]{1,3}(;[0-9]{1,2})?)?[mGK]//g\"";
calc = "numbat --pretty-print never -e";
pcalc = "numbat --pretty-print always -e";
cat = "bat";
vim = "hx";
vi = "hx";
trash = "trash-put";
};
}