36 lines
1.1 KiB
Plaintext
36 lines
1.1 KiB
Plaintext
# List of plugins
|
|
set -g @plugin 'tmux-plugins/tpm'
|
|
set -g @plugin 'tmux-plugins/tmux-sensible'
|
|
set -g @plugin 'jimeh/tmux-themepack'
|
|
set -g @plugin 'tmux-plugins/tmux-battery'
|
|
set -g @plugin 'tmux-plugins/tmux-ressurect'
|
|
set -g @plugin 'tmux-plugins/tmux-continuum'
|
|
|
|
|
|
# Configs
|
|
set -g @themepack 'powerline/double/cyan'
|
|
|
|
|
|
set -g status-right '#{battery_status_bg} Batt: #{battery_icon} #{battery_percentage} #{battery_remain} | %a %h-%d %H:%M '
|
|
set -g @batt_charged_icon "😎"
|
|
set -g @batt_charging_icon "👍"
|
|
set -g @batt_discharging_icon "👎"
|
|
set -g @batt_attached_icon "😐"
|
|
|
|
|
|
|
|
bind '"' split-window -c "#{pane_current_path}"
|
|
bind % split-window -h -c "#{pane_current_path}"
|
|
bind c new-window -c "#{pane_current_path}"
|
|
bind | split-window -h -c "#{pane_current_path}"# Split panes horizontal
|
|
bind - split-window -v -c "#{pane_current_path}"# Split panes vertically
|
|
|
|
set -g @continuum-restore 'on'
|
|
|
|
set-option -g default-command "reattach-to-user-namespace -l fish"
|
|
set-option -g set-titles on
|
|
|
|
|
|
# Initialize TMUX plugin manager (keep this line at the very bottom of tmux.conf)
|
|
run '~/.tmux/plugins/tpm/tpm'
|