Skip to content

Instantly share code, notes, and snippets.

@pluskid
Last active May 23, 2021 22:00
Show Gist options
  • Save pluskid/486987b460fe0e074a769f796f8552f3 to your computer and use it in GitHub Desktop.
Save pluskid/486987b460fe0e074a769f796f8552f3 to your computer and use it in GitHub Desktop.
tmux configuration
set-option -g prefix C-l
bind-key Space last-window
# Avoid Esc key delay when using VIM
set -sg escape-time 0
set-option -g history-limit 1000000
# See here for instructions to install tpm
# https://github.com/tmux-plugins/tpm
# Note you need to execute <prefix>+I to actually install the plugins
# List of plugins
set -g @plugin 'tmux-plugins/tpm'
set -g @plugin 'tmux-plugins/tmux-sensible'
set -g @plugin "arcticicestudio/nord-tmux" # nord color theme
# Initialize TMUX plugin manager (keep this line at the very bottom of tmux.conf)
run -b '~/.tmux/plugins/tpm/tpm'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment