nixos-config/home-manager/stvnliu/programs/tmux.nix
Zhongheng Liu ba450b88ef
feat: font; qt theme; foot program
font: Change from Monocraft to JetBrains
qt: Change theme to Fusion (doesn't look like it works)
foot: enable proper home-manger foot server support
2024-10-26 12:47:26 +03:00

20 lines
394 B
Nix

{
pkgs,
config,
lib,
...
}: {
programs.tmux = {
enable = true;
shell = "${pkgs.fish}/bin/fish";
terminal = "screen-256color"; # Fix for apps not recognising full color
mouse = true;
plugins = with pkgs; [
tmuxPlugins.cpu
{
plugin = tmuxPlugins.resurrect;
extraConfig = "set -g @resurrect-strategy-nvim 'session'";
}
];
};
}