Alacritty

This commit is contained in:
Filippo Berto 2021-05-22 14:49:06 +02:00
parent 0aae761f89
commit 8af06b2703
4 changed files with 70 additions and 2 deletions

21
modules/tmux.nix Normal file
View 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"
};
}