Last active
August 15, 2023 09:24
-
-
Save rwp0/4373c6a714fb81189fdfcf2c988cbb96 to your computer and use it in GitHub Desktop.
My 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
# -*- shell -*- | |
# Show current configuration with: | |
# tmux show-option -g | |
# Mouse | |
set-option -g mouse "on" # Shift | |
# Aliases | |
set-option -g command-alias[0] "r='rename-window'" | |
# Indexes | |
set-option -g base-index 1 | |
set-option -g pane-base-index 1 | |
set-option -g renumber-windows "on" | |
# Status | |
set-option -g status-position "top" | |
set-option -g status-justify "centre" | |
set-option -g status-bg "default" | |
set-option -g status-fg "brightcyan" | |
# Panes | |
set-option -g display-panes-colour "cyan" | |
set-option -g display-panes-active-colour "brightgreen" | |
set-option -g pane-border-style "bg=default fg=cyan" | |
set-option -g pane-active-border-style "bg=default fg=brightgreen" | |
# set-option -g default-shell /usr/bin/fish |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Documentation