feat(tmux): add tmux plugins
This commit is contained in:
parent
cb58a71789
commit
8b0f7472de
1 changed files with 18 additions and 1 deletions
|
@ -1,6 +1,23 @@
|
|||
{
|
||||
{pkgs, ...}: {
|
||||
programs.tmux = {
|
||||
enable = true;
|
||||
plugins = with pkgs.tmuxPlugins; [
|
||||
catppuccin
|
||||
tmux-which-key
|
||||
tmux-powerline
|
||||
{
|
||||
plugin = resurrect;
|
||||
extraConfig = ''
|
||||
set -g @resurrect-strategy-nvim 'session'
|
||||
'';
|
||||
}
|
||||
{
|
||||
plugin = continuum;
|
||||
extraConfig = ''
|
||||
set -g @continuum-restore 'on'
|
||||
'';
|
||||
}
|
||||
];
|
||||
extraConfig = ''
|
||||
set -g default-terminal "tmux-256color"
|
||||
set -ag terminal-overrides ",xterm-256color:RGB"
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue