tmux mods

This commit is contained in:
2024-04-23 23:35:57 +02:00
parent f6d38a67ac
commit 21a1fd09d5
2 changed files with 23 additions and 2 deletions

View File

@@ -13,6 +13,26 @@
yank
];
extraConfig = ''
# reattach userspaces
set -g default-command "reattach-to-user-namespace -l zsh"
# history limit
set -g history-limit 5000
# increase repeat time
set -g repeat-time 1000
# decrese command delay
set -sg escape-time 1
# faster key repetition
set -s escape-time 0
setw -g aggressive-resize on
# reload tmux while using tmux
bind r source-file ~/.config/tmux/tmux.conf \; display "Reloaded!"
# Shift Alt vim keys to switch windows
bind -n M-H previous-window
bind -n M-L next-window
@@ -25,6 +45,8 @@
# Open panes in current directory
bind '"' split-window -v -c "#{pane_current_path}"
bind % split-window -h -c "#{pane_current_path}"
'';
};
}