This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
################################################# | |
# | |
# 外道式tmux設定&重要操作メモ | |
# modified by ballistyx | |
# - 操作メモはデフォルトではなく設定変更済みに対する説明 | |
######### | |
# | |
# メモ | |
# |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# resize pane | |
# prefix key is Ctrl+t | |
# usage: Ctrl+t Alt+Up(↑) | |
bind-key -r M-Up resize-pane -U 5 | |
bind-key -r M-Down resize-pane -D 5 | |
bind-key -r M-Left resize-pane -L 20 | |
bind-key -r M-Right resize-pane -R 20 |