Created
April 4, 2020 16:54
-
-
Save praveenc/cdaeccbe30731f7e3949221f19249fdd to your computer and use it in GitHub Desktop.
tmux conf
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
| # change prefix command to C-z | |
| set -g prefix C-z | |
| unbind C-b | |
| bind C-z last-window | |
| bind z send-prefix | |
| # setup | and - for window splitting | |
| unbind % | |
| bind | split-window -h | |
| bind - split-window -v | |
| # title | |
| set -g set-titles on | |
| set -g set-titles-string '#T' | |
| #set -g status-justify centre | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment