This commit is contained in:
Aria Nolan 2023-12-29 21:30:08 -05:00
parent c2c1491088
commit 1262f8853c
3 changed files with 23 additions and 0 deletions

View file

@ -6,6 +6,7 @@
./firefox.nix ./firefox.nix
./vscode.nix ./vscode.nix
./fzf.nix ./fzf.nix
./tmux.nix
# ./thunderbird.nix # ./thunderbird.nix
]; ];

View file

@ -0,0 +1,18 @@
{
pkgs,
...
}: {
programs.tmux = {
enable = true;
escapeTime = 0;
clock24 = true;
mouse = true;
newSession = true;
shell = "${pkgs.fish}/bin/fish";
sensibleOnTop = true;
terminal = "screen-256color";
# extraConfig = ''
# set -g default-terminal "screen-256color"
# '';
};
}

View file

@ -6,6 +6,10 @@
fish_vi_key_bindings fish_vi_key_bindings
set -g fish_cursor_insert line set -g fish_cursor_insert line
if not set -q TMUX
tmux attach
end
''; '';
plugins = [ plugins = [
{ {