RGB support for tmux

This commit is contained in:
Aria Nolan 2024-02-24 14:48:57 -05:00
parent f3b84d39ff
commit 6113cb2132
2 changed files with 2 additions and 1 deletions

View file

@ -8,7 +8,6 @@
./fzf.nix ./fzf.nix
./tmux.nix ./tmux.nix
./tiny.nix ./tiny.nix
./vim.nix
./radioboat.nix ./radioboat.nix
]; ];

View file

@ -4,6 +4,7 @@
escapeTime = 0; escapeTime = 0;
clock24 = true; clock24 = true;
mouse = true; mouse = true;
keyMode = "vi";
newSession = true; newSession = true;
shell = "${pkgs.fish}/bin/fish"; shell = "${pkgs.fish}/bin/fish";
sensibleOnTop = true; sensibleOnTop = true;
@ -12,6 +13,7 @@
set -g focus-events on set -g focus-events on
set -g allow-passthrough on set -g allow-passthrough on
set -g set-clipboard on set -g set-clipboard on
set -sa terminal-features ',foot:RGB'
''; '';
}; };
} }