Last active
August 10, 2022 12:12
-
-
Save lisanhu/531c5180009b1a14b5b138ec04b93b8a to your computer and use it in GitHub Desktop.
tmux configuration
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
# enable colors in tmux | |
set -g default-terminal "xterm-256color" | |
# changing prefix from 'Ctrl+b' to 'Ctrl+b' | |
unbind C-b | |
set-option -g prefix C-a | |
bind-key C-a send-prefix | |
# enable mouse scrolling | |
set -g mouse on | |
# enable vi mode | |
setw -g mode-keys vi |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment