tmux config fix

This commit is contained in:
Michael Thomson 2024-02-27 14:16:52 -05:00
parent 0ef051ed34
commit 4cfb0f5fe4
No known key found for this signature in database
2 changed files with 7 additions and 1 deletions

View File

@ -17,7 +17,7 @@
tmuxifier tmuxifier
neofetch neofetch
nodejs nodejs
corepack-nodejs corepack_latest
]; ];
programs.home-manager.enable = true; programs.home-manager.enable = true;

View File

@ -11,6 +11,12 @@
plugins = with pkgs; [ plugins = with pkgs; [
tmuxPlugins.vim-tmux-navigator tmuxPlugins.vim-tmux-navigator
]; ];
extraConfig = ''
set-option -sa terminal-overrides ",xterm*:Tc"
set -s escape-time 0
set -g status-left-length 30 # could be any number
set -g status-style 'bg=#333333 fg=#5eacd3'
'';
}; };
}; };
} }