Alacritty
This commit is contained in:
parent
0aae761f89
commit
8af06b2703
4 changed files with 70 additions and 2 deletions
21
modules/tmux.nix
Normal file
21
modules/tmux.nix
Normal file
|
|
@ -0,0 +1,21 @@
|
|||
{ pkgs, ... }:
|
||||
{
|
||||
programs.tmux = {
|
||||
enable = true;
|
||||
clock24 = true;
|
||||
escapeTime = 25;
|
||||
plugins = with pkgs; [
|
||||
tmuxPlugins.continuum
|
||||
tmuxPlugins.prefix-highlight
|
||||
tmuxPlugins.nord
|
||||
];
|
||||
extraConfig = ''
|
||||
set -g mouse on
|
||||
'';
|
||||
|
||||
# set -g default-terminal "screen"
|
||||
# set -ga terminal-overrides ",col:Tc"
|
||||
|
||||
};
|
||||
}
|
||||
|
||||
Loading…
Add table
Add a link
Reference in a new issue