aboutsummaryrefslogtreecommitdiff
path: root/nix/users/fcuny/shell.nix
diff options
context:
space:
mode:
authorFranck Cuny <franck@fcuny.net>2024-12-30 08:48:22 -0800
committerFranck Cuny <franck@fcuny.net>2024-12-30 08:48:22 -0800
commitdc89b8652b6e46f2b1cb223c9e1ab3e90f7bedc4 (patch)
tree218d47c2124dde94799b3ca7dc5a41327a72867d /nix/users/fcuny/shell.nix
parentremove eza: it is too intrusive (diff)
downloadinfra-dc89b8652b6e46f2b1cb223c9e1ab3e90f7bedc4.tar.gz
add a few aliases to fish and git for git
Diffstat (limited to 'nix/users/fcuny/shell.nix')
-rw-r--r--nix/users/fcuny/shell.nix4
1 files changed, 4 insertions, 0 deletions
diff --git a/nix/users/fcuny/shell.nix b/nix/users/fcuny/shell.nix
index f364b1f..b415038 100644
--- a/nix/users/fcuny/shell.nix
+++ b/nix/users/fcuny/shell.nix
@@ -41,11 +41,15 @@ in
enable = true;
interactiveShellInit = ''
set fish_greeting ""
+
+ fish_add_path -p ~/.cargo/bin/
'';
shellAbbrs = {
ncg = "nix-collect-garbage -7d";
c = "clear";
j = "just";
+ g = "git";
+ gap = "git add --patch";
};
};