nix-config/programs/tmux/default.nix

31 lines
701 B
Nix
Raw Permalink Normal View History

2021-07-28 22:32:49 -07:00
{ config, pkgs, ... }:
let
tmuxConfig = builtins.readFile ./tmux.conf;
in
{
programs.tmux = {
enable = true;
baseIndex = 1;
escapeTime = 10;
historyLimit = 10000;
keyMode = "vi";
prefix = "C-a";
terminal = "xterm-256color";
extraConfig = tmuxConfig;
plugins = with pkgs; [
{
plugin = tmuxPlugins.resurrect;
extraConfig = "set -g @resurrect-strategy-nvim 'session'";
}
{
plugin = tmuxPlugins.continuum;
extraConfig = "set -g @continuum-restore 'on'";
}
2024-05-18 11:31:35 -07:00
{ plugin = tmuxPlugins.sensible; }
{ plugin = tmuxPlugins.vim-tmux-navigator; }
{ plugin = tmuxPlugins.onedark-theme; }
2021-07-28 22:32:49 -07:00
];
};
}