Skip to content

Instantly share code, notes, and snippets.

@brettkromkamp
Last active March 18, 2024 19:18
Show Gist options
  • Save brettkromkamp/81105ab2f79db826d6d9701bff3a00ce to your computer and use it in GitHub Desktop.
Save brettkromkamp/81105ab2f79db826d6d9701bff3a00ce to your computer and use it in GitHub Desktop.
Tmux configuration
unbind r
bind r source-file ~/.tmux.conf
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
# Plugins
set -g @plugin 'tmux-plugins/tpm'
set -g @plugin 'tmux-plugins/tmux-sensible'
set -g @plugin 'christoomey/vim-tmux-navigator'
set -g @plugin 'dracula/tmux'
set -g @dracula-show-powerline true
set -g @dracula-fixed-location "Bodø"
set -g @dracula-show-fahrenheit false
set -g @dracula-plugins "weather"
set -g @dracula-show-flags true
set -g @dracula-show-left-icon session
set -g status-position top
set -g history-limit 10000
set -s escape-time 0
set -g allow-rename off
# set -g mouse on
set-option -sa terminal-features ',xterm-256color:RGB'
# Initialize TMUX plugin manager (keep this line at the very bottom of tmux.conf)
run '~/.tmux/plugins/tpm/tpm'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment