Last active
April 29, 2020 11:08
-
-
Save yindia/45ca51c978574ad90c58cc1c20c012c4 to your computer and use it in GitHub Desktop.
Tmux Conf
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-option -g prefix C-a | |
unbind % | |
bind | split-window -h | |
bind - split-window -v | |
bind N break-pane | |
# Set status bar | |
set -g status-bg black | |
set -g status-fg white | |
# Highlight active window | |
#set-window-option -g window-status-current-bg blue | |
# Set window notifications | |
setw -g monitor-activity on | |
set -g visual-activity on | |
# Automatically set window title | |
setw -g automatic-rename |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment