2024-07-08 09:00:43 +00:00
|
|
|
{ lib, config, pkgs, ... }:
|
2024-05-30 21:01:29 +00:00
|
|
|
|
|
|
|
let
|
|
|
|
cfg = config.snowhawk.tmux;
|
|
|
|
in
|
|
|
|
{
|
|
|
|
options.snowhawk.tmux = {
|
|
|
|
enable = lib.mkEnableOption "tmux";
|
|
|
|
};
|
|
|
|
|
|
|
|
config = lib.mkIf cfg.enable {
|
|
|
|
programs.tmux = {
|
|
|
|
enable = true;
|
2024-07-08 09:00:43 +00:00
|
|
|
shell = "${pkgs.fish}/bin/fish";
|
|
|
|
mouse = true;
|
|
|
|
baseIndex = 1;
|
2024-07-28 21:20:40 +00:00
|
|
|
terminal = "screen-256color";
|
2024-07-08 09:00:43 +00:00
|
|
|
newSession = true;
|
|
|
|
|
|
|
|
plugins = with pkgs; [
|
|
|
|
{
|
|
|
|
plugin = tmuxPlugins.rose-pine;
|
|
|
|
extraConfig = ''
|
|
|
|
set -g @rose_pine_variant 'main' # Options are 'main', 'moon' or 'dawn'
|
|
|
|
set -g @rose_pine_host 'on'
|
|
|
|
set -g @rose_pine_date_time '%c' # %c is a good value but
|
|
|
|
'';
|
|
|
|
}
|
2024-07-28 14:21:13 +00:00
|
|
|
{ plugin = tmuxPlugins.vim-tmux-navigator; }
|
2024-07-08 09:00:43 +00:00
|
|
|
];
|
|
|
|
|
|
|
|
extraConfig = ''
|
|
|
|
set-option -g renumber-windows on
|
|
|
|
|
|
|
|
bind '"' split-window -v -c "#{pane_current_path}"
|
|
|
|
bind % split-window -h -c "#{pane_current_path}"
|
|
|
|
|
|
|
|
bind-key -r f run-shell "tmux neww ~/.user/scripts/tmux-sessionizer"
|
|
|
|
'';
|
2024-05-30 21:01:29 +00:00
|
|
|
};
|
|
|
|
};
|
|
|
|
}
|