home/tmux: don't use hm module
This commit is contained in:
parent
7be816cc69
commit
8a1731ff35
1 changed files with 27 additions and 18 deletions
|
@ -1,21 +1,30 @@
|
||||||
{
|
{pkgs, ...}: {
|
||||||
programs.tmux = {
|
home.packages = [pkgs.tmux];
|
||||||
enable = true;
|
|
||||||
|
|
||||||
# value from tmux-sensible, but got overridden by HM (?)
|
xdg.configFile."tmux/tmux.conf".text = ''
|
||||||
aggressiveResize = true;
|
run-shell ${pkgs.tmuxPlugins.sensible.rtp}
|
||||||
escapeTime = 0;
|
|
||||||
historyLimit = 50000;
|
|
||||||
|
|
||||||
baseIndex = 1;
|
set-option -s default-terminal "tmux-256color"
|
||||||
customPaneNavigationAndResize = true;
|
|
||||||
keyMode = "vi";
|
set-option -g base-index 1
|
||||||
mouse = true;
|
set-option -w -g pane-base-index 1
|
||||||
newSession = true;
|
set-option -g renumber-windows on
|
||||||
terminal = "tmux-256color";
|
|
||||||
extraConfig = ''
|
set-option -g status-keys vi
|
||||||
set -g set-clipboard on
|
set-option -w -g mode-keys vi
|
||||||
set -g renumber-windows on
|
set-option -g mouse on
|
||||||
'';
|
set-option -s set-clipboard on
|
||||||
};
|
set-option -w -g aggressive-resize on
|
||||||
|
|
||||||
|
bind-key -N "Select pane to the left of the active pane" h select-pane -L
|
||||||
|
bind-key -N "Select pane below the active pane" j select-pane -D
|
||||||
|
bind-key -N "Select pane above the active pane" k select-pane -U
|
||||||
|
bind-key -N "Select pane to the right of the active pane" l select-pane -R
|
||||||
|
bind-key -r -N "Resize the pane left by 5" H resize-pane -L 5
|
||||||
|
bind-key -r -N "Resize the pane down by 5" J resize-pane -D 5
|
||||||
|
bind-key -r -N "Resize the pane up by 5" K resize-pane -U 5
|
||||||
|
bind-key -r -N "Resize the pane right by 5" L resize-pane -R 5
|
||||||
|
|
||||||
|
new-session
|
||||||
|
'';
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue