Last active
May 23, 2021 22:00
-
-
Save pluskid/486987b460fe0e074a769f796f8552f3 to your computer and use it in GitHub Desktop.
tmux configuration
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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