Skip to content

Instantly share code, notes, and snippets.

@rwp0
Last active August 15, 2023 09:24
Show Gist options
  • Save rwp0/4373c6a714fb81189fdfcf2c988cbb96 to your computer and use it in GitHub Desktop.
Save rwp0/4373c6a714fb81189fdfcf2c988cbb96 to your computer and use it in GitHub Desktop.
My TMUX Configuration
# -*- 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
@rwp0
Copy link
Author

rwp0 commented Aug 15, 2023

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment