Last active
September 29, 2023 19:18
-
-
Save apzentral/11087412784c05a070e232510fb5476b to your computer and use it in GitHub Desktop.
TMUX basic config using A instead of B
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
| # remap prefix to Control + a | |
| set -g prefix C-a | |
| # bind 'C-a C-a' to type 'C-a' | |
| bind C-a send-prefix | |
| unbind C-b | |
| # Enable mouse mode (tmux 2.1 and above) | |
| set -g mouse on |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment