summaryrefslogtreecommitdiffstats
path: root/sh.nix
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--sh.nix5
1 files changed, 5 insertions, 0 deletions
diff --git a/sh.nix b/sh.nix
index 5e0402a..23c4ba8 100644
--- a/sh.nix
+++ b/sh.nix
@@ -69,12 +69,17 @@ in
gco = "git checkout";
gs = "git status";
};
+ shellAliases = {
+ tms = "bash ~/.config/tmux/setup-sessions.sh";
+ };
interactiveShellInit = ''
fish_vi_key_bindings
set -U fish_greeting
zoxide init fish | source
fzf --fish | source
starship init fish | source
+ set -gx EDITOR nvim
+ set -gx VISUAL nvim
'';
};