feat: add tmux and git work config

This commit is contained in:
2025-06-20 14:03:42 +00:00
committed by Emma Thorpe
parent 3a9407fc9d
commit 5ed5363fe1
3 changed files with 15 additions and 17 deletions
+10 -3
View File
@@ -32,10 +32,9 @@
terminal = "tmux-direct";
newSession = true;
keyMode = "vi";
historyLimit = 50000;
historyLimit = 50000;
mouse = true;
extraConfig = ''
# Enable mouse support
set -g mouse on
# Set pane navigation
bind -n M-Left select-pane -L
bind -n M-Right select-pane -R
@@ -79,5 +78,13 @@
enable = true;
package = pkgs.gitFull;
userName = "Emma Thorpe";
extraConfig = {
push = {
autoSetupRemote = true;
};
};
delta = {
enable = true;
};
};
}