diff options
author | EuAndreh <eu@euandre.org> | 2024-11-14 00:35:35 -0300 |
---|---|---|
committer | EuAndreh <eu@euandre.org> | 2024-11-14 00:35:35 -0300 |
commit | c36325aee4359bab05ec24edc78ae99c7d3ca04a (patch) | |
tree | 1d2c7cda66283ad2c12e6e1ffdde68ced0fab8b6 /etc/tmux | |
parent | etc/sh/rc: Add -N to GOCFLAGS (diff) | |
download | dotfiles-c36325aee4359bab05ec24edc78ae99c7d3ca04a.tar.gz dotfiles-c36325aee4359bab05ec24edc78ae99c7d3ca04a.tar.xz |
etc/tmux/tmux.conf: Add keybinding for setting width to 80 columns
Diffstat (limited to 'etc/tmux')
-rw-r--r-- | etc/tmux/tmux.conf | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/etc/tmux/tmux.conf b/etc/tmux/tmux.conf index 93326ae..59e974d 100644 --- a/etc/tmux/tmux.conf +++ b/etc/tmux/tmux.conf @@ -31,6 +31,7 @@ bind-key -n M-H resize-pane -L 5 bind-key -n M-J resize-pane -D 5 bind-key -n M-K resize-pane -U 5 bind-key -n M-L resize-pane -R 5 +bind-key -n M-> resize-pane -x 80 # Reorder windows bind-key -n C-S-Left swap-window -t -1\; select-window -t -1 |