Created
June 15, 2020 14:01
-
-
Save MinSomai/434f3dbcfe524026106e8a3fd49691a1 to your computer and use it in GitHub Desktop.
my tmux conf
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
set -g prefix C-b | |
#Vim like navigation between panes | |
bind -r k select-pane -U | |
bind -r j select-pane -D | |
bind -r h select-pane -L | |
bind -r l select-pane -R | |
#set-option -g status-right "#{network_bandwidth}" | |
#set -g status-right 'Continuum status: #{continuum_status}' | |
#set -g @continuum-restore 'on' | |
#set -g @continuum-boot 'on' | |
#set -g @net_speed_interfaces "eth0 eth1 wlan0" | |
# Theme from the tmux theme pack | |
set -g @themepack 'powerline/default/purple' | |
# BELOW - tmux plugin manager files only | |
# List of plugins | |
set -g @plugin 'tmux-plugins/tpm' | |
#set -g @plugin 'tmux-plugins/tmux-sensible' | |
#Theme | |
set -g @plugin 'jimeh/tmux-themepack' | |
# Persist Tmux environment | |
#set -g @plugin 'tmux-plugins/tmux-resurrect' | |
#set -g @plugin 'tmux-plugins/tmux-continuum' | |
#set -g @plugin 'xamut/tmux-network-bandwidth' | |
#set -g @plugin 'tmux-plugins/tmux-net-speed' | |
# Sidebar | |
# set -g @plugin 'tmux-plugins/tmux-sidebar' | |
# Other examples: | |
# set -g @plugin 'github_username/plugin_name' | |
# set -g @plugin '[email protected]/user/plugin' | |
# set -g @plugin '[email protected]/user/plugin' | |
# 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