tmux: Add configuration
This commit is contained in:
parent
533b6a4720
commit
3893f229b7
1 changed files with 20 additions and 0 deletions
20
modules/home/caem/development/tmux.nix
Normal file
20
modules/home/caem/development/tmux.nix
Normal file
|
@ -0,0 +1,20 @@
|
||||||
|
{ pkgs, ... }:
|
||||||
|
|
||||||
|
{
|
||||||
|
home.packages = with pkgs; [
|
||||||
|
wl-clipboard
|
||||||
|
];
|
||||||
|
|
||||||
|
programs.tmux = {
|
||||||
|
enable = true;
|
||||||
|
baseIndex = 1;
|
||||||
|
historyLimit = 696969696969;
|
||||||
|
mouse = true;
|
||||||
|
newSession = true;
|
||||||
|
terminal = ",xterm-256color:Tc";
|
||||||
|
clock24 = true;
|
||||||
|
extraConfig = ''
|
||||||
|
set -s copy-command 'wl-copy'
|
||||||
|
'';
|
||||||
|
};
|
||||||
|
}
|
Loading…
Add table
Add a link
Reference in a new issue