Skip to content

Commit 47bce30

Browse files
committedDec 10, 2024
disable tmux-sensible
There's a bug between current tmux 3.5a and tmux-sensible@25cb91f that makes it always use sh instead of correct $SHELL https://discourse.nixos.org/t/tmux-use-bash-instead-defined-zsh-in-home-manager/54763/2 nix-community/home-manager#5952 will need fix here: - tmux-plugins/tmux-sensible#75 but I may not actually need sensible at all with home-manager tmux config
1 parent 4295f0d commit 47bce30

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed
 

‎home/sme/bluestreak.nix

+3-1
Original file line numberDiff line numberDiff line change
@@ -427,6 +427,7 @@ in {
427427
# Force tmux to use /tmp for sockets (WSL2 compat)
428428
secureSocket = false;
429429
clock24 = true;
430+
sensibleOnTop = false;
430431
plugins = with pkgs.tmuxPlugins; [
431432
# First plugins that adjust the right status bar
432433
{
@@ -449,10 +450,11 @@ in {
449450
extraConfig = ''
450451
set -g @continuum-restore 'on'
451452
set -g @continuum-boot 'on'
453+
set -g @continuum-boot-options 'alacritty,fullscreen'
452454
set -g @continuum-save-interval '15' # minutes
453455
'';
454456
}
455-
sensible
457+
# sensible
456458
better-mouse-mode
457459
extrakto # prefix + tab
458460
fzf-tmux-url # prefix + u

0 commit comments

Comments
 (0)
Failed to load comments.