Skip to content

Commit

Permalink
fix(users/alesauce/core/tmux): Unset sensibleOnTop to fix default she…
Browse files Browse the repository at this point in the history
…ll in new sessions

Issue: nix-community/home-manager#5952
  • Loading branch information
alesauce committed Nov 14, 2024
1 parent f46fec1 commit 52fbc32
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
1 change: 0 additions & 1 deletion users/alesauce/core/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,6 @@
eza
fd
fzf
mosh
neovim
ripgrep
tmuxp
Expand Down
5 changes: 4 additions & 1 deletion users/alesauce/core/tmux.nix
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,8 @@
programs.tmux = {
enable = true;
tmuxp.enable = true;
sensibleOnTop = true;
# FIXME: https://github.com/nix-community/home-manager/issues/5952
sensibleOnTop = false;
aggressiveResize = true;
clock24 = true;
newSession = false;
Expand All @@ -21,6 +22,8 @@
mouse = true;
customPaneNavigationAndResize = true;
extraConfig = ''
# update the env when attaching to an existing session
set -g update-environment -r
# automatically renumber windows
set -g renumber-windows on
Expand Down

0 comments on commit 52fbc32

Please sign in to comment.