Useful tmux config for daily workflow
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
# Create file'.tmux.conf' like this vim ~/.tmux.conf | |
# Copy the following commands to help you | |
# To create split windows on horizontal axis, press following `ctrl + b` and then hold `shift + '` or ` " ` | |
#windows manupilation with mouse, the ability to resize and move across split windows | |
set -g mode-mouse on #For tmux versions < 2.1 | |
#copy and paste commands | |
bind P paste-buffer | |
bind-key -t vi-copy 'v' begin-selection | |
bind-key -t vi-copy 'y' copy-selection | |
bind-key -t vi-copy 'r' rectangle-toggle |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment