35 lines
722 B
Nix
35 lines
722 B
Nix
{ pkgs, config, lib,... }:
|
|
{
|
|
home.packages = with pkgs; [
|
|
];
|
|
|
|
programs.tmux = {
|
|
enable = true;
|
|
extraConfig = ''
|
|
set-option -sa terminal-overrides ",xterm*:Tc"
|
|
set -g @catppuccin_flavor 'mocha'
|
|
set -g @catppuccin_window_status_style "rounded"
|
|
set -g status-right-length 100
|
|
set -g status-left-length 100
|
|
set -g status-left ""
|
|
set -g status-right "#{E:@catppuccin_status_application}"
|
|
set -ag status-right "#{E:@catppuccin_status_session}"
|
|
set -ag status-right "#{E:@catppuccin_status_uptime}"
|
|
|
|
|
|
unbind C-b
|
|
set -g prefix C-Space
|
|
bind C-Space send-prefix
|
|
|
|
bind -n M-H previous-window
|
|
bind -n M-L next-window
|
|
'';
|
|
|
|
plugins = [
|
|
pkgs.tmuxPlugins.catppuccin
|
|
pkgs.tmuxPlugins.vim-tmux-navigator
|
|
];
|
|
};
|
|
|
|
}
|