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 Ctrl-a instead of Ctrl-b | |
unbind C-b | |
set -g prefix C-a | |
# Allow C-A a to send C-A to application. Useful for Vim, other apps | |
bind C-a send-prefix | |
# Reload the .tmux.conf file with Ctrl-r | |
bind-key r source-file ~/.tmux.conf \; display-message "Configuration reloaded" |