Skip to content

Instantly share code, notes, and snippets.

@sebby
Last active September 30, 2023 05:24
Show Gist options
  • Select an option

  • Save sebby/465a378e62cb004e0a91614b6eadd1f8 to your computer and use it in GitHub Desktop.

Select an option

Save sebby/465a378e62cb004e0a91614b6eadd1f8 to your computer and use it in GitHub Desktop.
Ma configuration tmux
unbind r
bind r source-file ~/.tmux.conf
set -g prefix C-s
## act like vim
set -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
# List of plugins
set -g @plugin 'tmux-plugins/tpm'
set -g @plugin 'christoomey/vim-tmux-navigator'
set -g @plugin 'dracula/tmux'
set -g @plugin 'tmux-plugins/tmux-resurrect'
set -g @plugin 'tmux-plugins/tmux-continuum'
set -g @dracula-show-powerline true
set -g @dracula-show-fahrenheit false
set -g @dracula-fixed-location 'Paris'
set -g @dracula-plugins 'weather time git'
set -g @dracula-show-flags true
set -g @dracula-show-left-icon session
set -g status-position top
# Initialize
run '~/.tmux/plugins/tpm/tpm'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment