Last active
September 16, 2019 13:29
-
-
Save pyeprog/c7533126501933f14523e04d1cca1dd2 to your computer and use it in GitHub Desktop.
tmux configuration
This file contains hidden or 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
# Prerequisite: | |
# - theme: powerline font | |
set TERM=xterm-256color | |
set -g prefix C-v | |
unbind C-b | |
bind C-v send-prefix -2 | |
set -q -g status-utf8 on | |
setw -q -g utf8 on | |
set -g history-limit 5000 | |
set -g @plugin 'tmux-plugins/tpm' | |
set -g @plugin 'tmux-plugins/tmux-sensible' | |
set -g @plugin 'tmux-plugins/tmux-pain-control' | |
set -g @plugin 'tmux-plugins/tmux-resurrect' | |
set -g @plugin 'tmux-plugins/tmux-continuum' | |
set -g @plugin 'tmux-plugins/tmux-yank' | |
set -g @plugin 'tmux-plugins/tmux-copycat' | |
set -g @plugin 'nhdaly/tmux-better-mouse-mode' | |
set -g @plugin 'tmux-plugins/tmux-net-speed' | |
set -g @plugin 'jimeh/tmux-themepack' | |
run -b '~/.tmux/plugins/tpm/tpm' | |
set -g @continuum-restore 'on' | |
set-option -g mouse on | |
set -g @themepack 'powerline/block/gray' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment