Fully regulated power tmux with default (system) coloring. Also, using emojis in window names to make for a sick work environment.
This commit is contained in:
parent
143a473acc
commit
919296ece8
|
|
@ -1,5 +1,5 @@
|
|||
source-file ~/.config/tmux/plugins.tmux
|
||||
source-file ~/.config/tmux/settings.tmux
|
||||
source-file ~/.config/tmux/keys.tmux
|
||||
source-file ~/.config/tmux/mouse.tmux
|
||||
source-file ~/.config/tmux/plugins.tmux
|
||||
source-file ~/.config/tmux/status.tmux
|
||||
|
|
|
|||
|
|
@ -66,8 +66,8 @@ setw -g xterm-keys on
|
|||
bind P command-prompt -p "(rename-pane)" -I "#T" "select-pane -T '%%'"
|
||||
|
||||
# Choose Tree
|
||||
unbind t
|
||||
bind t choose-tree
|
||||
unbind T
|
||||
bind T choose-tree
|
||||
|
||||
# https://gitlab.com/protesilaos/dotfiles/blob/master/tmux/.tmux.conf
|
||||
# copy mode
|
||||
|
|
|
|||
|
|
@ -3,6 +3,15 @@
|
|||
# source "$/home/shawn/.config/powerline/themes/tmux///tmux/powerline.conf"
|
||||
# set -g status-right ''
|
||||
|
||||
set -g @tmux_power_theme '#483D8B' # dark slate blue
|
||||
#set -g @tmux_power_date_icon ' ' # set it to a blank will disable the icon
|
||||
set -g @tmux_power_time_icon '🕘' # emoji can be used if your terminal supports
|
||||
set -g @tmux_power_user_icon '🍄'
|
||||
#set -g @tmux_power_session_icon 'S'
|
||||
#set -g @tmux_power_upload_speed_icon '↑'
|
||||
#set -g @tmux_power_download_speed_icon '↓'
|
||||
#set -g @tmux_power_left_arrow_icon '<'
|
||||
#set -g @tmux_power_right_arrow_icon '>'
|
||||
|
||||
# List of plugins
|
||||
set -g @plugin 'tmux-plugins/tpm'
|
||||
|
|
@ -13,7 +22,7 @@ set -g @plugin 'tmux-plugins/tmux-sensible'
|
|||
# run-shell "~/.config/serious-tmux/serious/plugins/nord-tmux/nord.tmux"
|
||||
|
||||
# Tmux Power
|
||||
set -g @tmux_power_theme 'gold'
|
||||
set -g @tmux_power_theme 'default'
|
||||
set -g @plugin 'wfxr/tmux-power'
|
||||
|
||||
# Prefix Highlight
|
||||
|
|
@ -21,11 +30,11 @@ set -g @plugin 'tmux-plugins/tmux-prefix-highlight'
|
|||
set -ag status-right "#{prefix_highlight}"
|
||||
|
||||
# Save state
|
||||
set -g @plugin 'tmux-plugins/tmux-resurrect'
|
||||
set -g @plugin 'tmux-plugins/tmux-continuum'
|
||||
set -g @continuum-save-interval '15'
|
||||
set -g @continuum-restore 'off'
|
||||
set -g status-right 'Continuum status: #{continuum_status}'
|
||||
#set -g @plugin 'tmux-plugins/tmux-resurrect'
|
||||
#set -g @plugin 'tmux-plugins/tmux-continuum'
|
||||
#set -g @continuum-save-interval '15'
|
||||
#set -g @continuum-restore 'off'
|
||||
#set -g status-right 'Continuum status: #{continuum_status}'
|
||||
|
||||
# Spotify
|
||||
set -g @plugin 'pwittchen/tmux-plugin-spotify'
|
||||
|
|
|
|||
Loading…
Reference in New Issue