diff --git a/dotfiles/.config/tmux/keys.tmux b/dotfiles/.config/tmux/keys.tmux index 0b9d848..3bbd7aa 100644 --- a/dotfiles/.config/tmux/keys.tmux +++ b/dotfiles/.config/tmux/keys.tmux @@ -14,8 +14,8 @@ unbind ? bind ? list-keys # Window management with arrow keys (-n: no prior escape seq) -bind -n C-up switch-client -p -bind -n C-down switch-client -n +bind -n C-up switch-client -n +bind -n C-down switch-client -p bind -n C-left prev bind -n C-right next bind -n S-Left { swap-window -t -1; previous-window } diff --git a/dotfiles/.config/tmux/plugins.tmux b/dotfiles/.config/tmux/plugins.tmux index 318c64f..f31a0a4 100644 --- a/dotfiles/.config/tmux/plugins.tmux +++ b/dotfiles/.config/tmux/plugins.tmux @@ -2,11 +2,17 @@ set -g @plugin 'tmux-plugins/tpm' set -g @plugin 'tmux-plugins/tmux-sensible' +# Tmux Net Speed +# set -g @plugin 'xamut/tmux-network-bandwidth' + # Tmux Power set -g @plugin 'linuxiscool/tmux-power' -set -g @tmux_power_theme 'violet' # dark slate blue -set -g @tmux_power_date_icon '🍁' # set it to a blank will disable the icon +#set -g @tmux_power_theme 'moon' # dark slate blue +set -g @tmux_power_theme '#70BFE1' # dark slate blue +#set -g @tmux_power_date_icon '☃️ ☃️ ☃️ February' # set it to a blank will disable the icon +set -g @tmux_power_date_icon '🌱 %B' # 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_user_icon '🍄' set -g @tmux_power_session_icon '✨' set -g @tmux_power_upload_speed_icon '' @@ -15,6 +21,9 @@ set -g @tmux_power_left_arrow_icon '' set -g @tmux_power_right_arrow_icon '' set -g @tmux_power_prefix_highlight_pos 'LR' +set -g @tmux_power_show_upload_speed false +set -g @tmux_power_show_download_speed false + # Prefix Highlight set -g @plugin 'tmux-plugins/tmux-prefix-highlight' set -ag status-right "#{prefix_highlight}" @@ -22,7 +31,8 @@ set -ag status-right "#{prefix_highlight}" # Tmux Text Macros for Emojis! set -g @plugin 'linuxiscool/tmux-text-macros' +# Tmux FZF +set -g @plugin 'sainnhe/tmux-fzf' + # Initialize Plugins run -b "~/.config/tmux/plugins/tpm/tpm" - -