tmux config fix

This commit is contained in:
foglar 2024-12-03 08:35:45 +01:00
parent 96e4ed146d
commit 5407310cb4

View File

@ -5,18 +5,32 @@
... ...
}: { }: {
options = { options = {
programs.tmux.enable = lib.mkEnableOption "tmux"; program.tmux.enable = lib.mkEnableOption "tmux";
}; };
config = lib.mkIf config.programs.tmux.enable { config = lib.mkIf config.program.tmux.enable {
programs.tmux = { programs.tmux = {
enable = true; enable = true;
clock24 = true; clock24 = true;
terminal = "screen-256color"; terminal = "screen-256color";
shortcut = "Space";
plugins = [ plugins = [
pkgs.tmuxPlugins.dracula {
pkgs.tmuxPlugins.tpm plugin = pkgs.tmuxPlugins.dracula;
extraConfig = ''
#set -g @dracula-show-powerline true
#set -g @dracula-show-flags true
set -g @dracula-plugins "cpu-usage ram-usage battery time"
set -g @dracula-show-left-icon session
set -g @dracula-battery-colors "red dark_gray"
set -g @dracula-show-timezone false
set -g @dracula-day-month true
set -g @dracula-military-time true
'';
}
#pkgs.tmuxPlugins.tmux-fzf #pkgs.tmuxPlugins.tmux-fzf
pkgs.tmuxPlugins.sensible pkgs.tmuxPlugins.sensible
pkgs.tmuxPlugins.yank pkgs.tmuxPlugins.yank
@ -24,24 +38,34 @@
]; ];
extraConfig = '' extraConfig = ''
# Set switching between windows simpler set-option -sa terminal-overrides ",xterm*:Tc"
unbind C-b
set -g prefix C-Space # Set pane to top
bind C-Space send-prefix set -g status-position top
# Mouse enable
set -g mouse on
# Start count on 1 instead of 0
set -g base-index 1
set -g pane-base-index 1
set-window-option -g pane-base-index 1
set-option -g renumber-windows only
bind -n M-H previous-window bind -n M-H previous-window
bind -n M-L next-window bind -n M-L next-window
set -g status-position top # set vi mode
set-option -sa terminal-overrides ",xterm*:Tc"
set-option -g mouse on
set-window-option -g mode-keys vi set-window-option -g mode-keys vi
setw -g mode-keys vi setw -g mode-keys vi
#keybindings for copying #keybindings for copying
bind-key -T copy-mode-vi v send-keys -X begin-selection bind-key -T copy-mode-vi v send-keys -X begin-selection
bind-key -T copy-mode-vi C-v send-keys -X rectangle toggle bind-key -T copy-mode-vi C-v send-keys -X rectangle toggle
bind-key -T copy-mode-vi y send-keys -X copy-selection-and-cancel bind-key -T copy-mode-vi y send-keys -X copy-selection-and-cancel
bind '"' split-window -v -c "#{pane_current_path}"
bind % split-window -h -c "#{pane_current_path}"
''; '';
}; };
}; };