Skip to content

Instantly share code, notes, and snippets.

@chadfennell
Created March 14, 2026 15:06
Show Gist options
  • Select an option

  • Save chadfennell/e0eafb7bb128915dc0c1d67c6f508722 to your computer and use it in GitHub Desktop.

Select an option

Save chadfennell/e0eafb7bb128915dc0c1d67c6f508722 to your computer and use it in GitHub Desktop.
# Basic settings
set -g base-index 1
setw -g pane-base-index 1
set -g default-shell /usr/bin/zsh
set -g history-limit 2000
set -g mouse off
set -g status on
# Status bar colors
set -g status-style bg=green,fg=black
set -g status-left "[#{session_name}] "
set -g status-right "\"#{=21:pane_title}\" %H:%M %d-%b-%y"
# Message colors
set -g message-style bg=yellow,fg=black
set -g message-command-style bg=black,fg=yellow
# Pane display colors
set -g display-panes-active-colour red
set -g display-panes-colour blue
set -g prefix C-s
setw -g mode-keys vi
bind-key h select-pane -L
bind-key j select-pane -D
bind-key k select-pane -U
bind-key l select-pane -R
## Plugin Meownager
set -g @plugin 'tmux-plugins/tpm'
set -g @plugin 'tmux-plugins/tmux-sensible'
# Pluguns'
set -g @plugin 'tmux-plugins/tmux-yank'
set -s set-clipboard on
set -g @plugin 'christoomey/vim-tmux-navigator'
set -g @plugin 'dracula/tmux'
set -g @dracula-show-powerline true
set -g @dracula-show-flags true
set -g @dracula-show-left-icon session
set -g status-position top
set -g @dracula-plugins "cpu-usage ram-usage"
set -g @dracula-show-weather false
set -g status on
set -g @dracula-show-window-tabs true
run '~/.tmux/plugins/tpm/tpm'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment