tmux: fix wayland clipboard
This commit is contained in:
parent
f713364a11
commit
22bc894406
2 changed files with 10 additions and 1 deletions
|
@ -19,7 +19,7 @@ in
|
|||
# shell = getExe pkgs.fish;
|
||||
mouse = true;
|
||||
baseIndex = 1;
|
||||
terminal = "screen-256color";
|
||||
terminal = "xterm-kitty";
|
||||
newSession = true;
|
||||
escapeTime = 0;
|
||||
|
||||
|
|
|
@ -95,6 +95,15 @@ in
|
|||
}];
|
||||
}
|
||||
|
||||
# tmux clipboard fix
|
||||
{
|
||||
home-manager.sharedModules = [{
|
||||
programs.tmux.extraConfig = ''
|
||||
set -s copy-command 'wl-copy'
|
||||
'';
|
||||
}];
|
||||
}
|
||||
|
||||
# hyprland configuration
|
||||
{
|
||||
home-manager.sharedModules = [{
|
||||
|
|
Loading…
Reference in a new issue