nixos-config/home/tmux.nix

20 lines
482 B
Nix
Raw Normal View History

2024-02-09 21:54:51 +00:00
{ 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}"
'';
};
}