summaryrefslogtreecommitdiffstats
path: root/sh.nix
diff options
context:
space:
mode:
authorAndrew <admonty1@protonmail.com>2025-08-30 12:33:55 -0400
committerAndrew <admonty1@protonmail.com>2025-08-30 12:33:55 -0400
commit08e6294366ed9a42b5b08e4d38f60567b91d858c (patch)
tree36268a87ff2898b9173939dc23ebfa110a5f21b4 /sh.nix
parentadd space after username in prompt for starship because it looks better (diff)
downloadnixos-08e6294366ed9a42b5b08e4d38f60567b91d858c.tar.gz
nixos-08e6294366ed9a42b5b08e4d38f60567b91d858c.tar.bz2
nixos-08e6294366ed9a42b5b08e4d38f60567b91d858c.zip
tmux and neovim config
Diffstat (limited to 'sh.nix')
-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
'';
};