nixos-config/home/tmux.nix

23 lines
504 B
Nix

{ pkgs, ... }:
{
programs.tmux = {
enable = true;
terminal = "screen-256color";
historyLimit = 65536;
clock24 = true;
plugins = with pkgs.tmuxPlugins; [
{
plugin = catppuccin;
extraConfig = ''
set -g @catppuccin_flavour 'mocha'
'';
}
];
extraConfig = ''
bind '"' split-window -c "#{pane_current_path}"
bind % split-window -h -c "#{pane_current_path}"
bind c new-window -c "#{pane_current_path}"
'';
};
}