Fix tmux configuration
This commit is contained in:
parent
908241eb67
commit
5951004562
3 changed files with 16 additions and 32 deletions
|
|
@ -1,14 +1,19 @@
|
|||
{ pkgs, ... }:
|
||||
{ ... }:
|
||||
{
|
||||
programs.tmux = {
|
||||
enable = true;
|
||||
tmuxinator = {
|
||||
enable = true;
|
||||
};
|
||||
secureSocket = false;
|
||||
};
|
||||
|
||||
home.file.".tmux.conf" = {
|
||||
source = ./tmux.conf;
|
||||
terminal = "screen-256color";
|
||||
aggressiveResize = true;
|
||||
secureSocket = false;
|
||||
baseIndex = 1;
|
||||
historyLimit = 10000;
|
||||
escapeTime = 500;
|
||||
mouse = true;
|
||||
|
||||
extraConfig = builtins.readFile ./tmux.conf;
|
||||
};
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue