Created
June 23, 2024 12:59
-
-
Save eakst7/e394371a494bd3d82415b6a0dbaebc4b to your computer and use it in GitHub Desktop.
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
set -g prefix C-a | |
set -g default-terminal "screen-256color" | |
# As of tmux 2.1: | |
setw -g mouse | |
bind-key -T prefix C-c new-window | |
bind-key -T prefix C-n next-window | |
bind-key -T prefix C-p previous-window | |
bind-key -T prefix C-\\ split-window -h | |
bind-key -T prefix C-- split-window -v | |
unbind-key C-b | |
bind-key C-a send-prefix |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment