tmux patch for bar

This commit is contained in:
Callum Leslie 2024-09-14 00:35:54 +01:00
parent 188d9cb439
commit cb51c7e09b
Signed by: cleslie
GPG key ID: D382C4AFEECEAA90
2 changed files with 28 additions and 8 deletions

View file

@ -20,15 +20,15 @@ in {
sensible
yank
{
plugin = onedark-theme;
plugin = onedark-theme.overrideAttrs (_: {
patches = [./bar.patch];
});
extraConfig = "\n";
}
{
plugin = resurrect;
extraConfig = ''
set -g @resurrect-strategy-vim 'session'
set -g @resurrect-strategy-nvim 'session'
set -g @resurrect-capture-pane-contents 'on'
set -g @resurrect-capture-pane-contents 'off'
'';
}
{
@ -62,8 +62,4 @@ in {
bind -r l select-pane -R
'';
};
# home.packages = [
# pkgs.tmux-sessionizer-cl
# ];
}