Last active
January 7, 2023 20:57
-
-
Save c4mx/fb3d6b30e943660df9539993efd1021a to your computer and use it in GitHub Desktop.
my tmux config file
This file contains hidden or 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
set-option -g prefix C-z # bind ctrl-a as control key | |
bind | split-window -h -c "#{pane_current_path}" # Split panes horizontal | |
bind - split-window -v -c "#{pane_current_path}" # Split panes vertically | |
bind enter resize-pane -Z # "return" key to resize pane | |
set -g mouse on # enable mouse mode | |
bind-key -n MouseDrag1Status swap-window -d -t= | |
unbind C-z | |
bind R move-window -r\; display-message "Windows reordered..." |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment