Skip to content

Instantly share code, notes, and snippets.

@MinSomai
Created June 15, 2020 14:01
Show Gist options
  • Save MinSomai/434f3dbcfe524026106e8a3fd49691a1 to your computer and use it in GitHub Desktop.
Save MinSomai/434f3dbcfe524026106e8a3fd49691a1 to your computer and use it in GitHub Desktop.
my tmux conf
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