nixos-config/home/tmux.nix

23 lines
504 B
Nix
Raw Normal View History

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