b69f4a8240
Chaned the tmux theme for the numbering of the windows from dsquare to fsquare. This gives us a filled in square with contrast to easily see the window numbers.
22 lines
552 B
Bash
22 lines
552 B
Bash
set -g prefix ^A
|
|
|
|
set -g @plugin 'tmux-plugins/tpm'
|
|
set -g @plugin 'tmux-plugins/tmux-sensible'
|
|
set -g @plugin 'janoamaral/tokyo-night-tmux'
|
|
|
|
# Tokyo Night config
|
|
set -g @tokyo-night-tmux_theme 'storm'
|
|
set -g @tokyo-night-tmux_show_netspeed 1
|
|
set -g @tokyo-night-tmux_netspeed_iface "wlp4s0"
|
|
set -g @tokyo-night-tmux_window_id_style fsquare
|
|
|
|
# Set mouse on so that we can scroll with the mouse
|
|
set -g mouse on
|
|
|
|
# Set status bar to bottom
|
|
set -g status-position bottom
|
|
|
|
#set -g @theme_plugin_datetime_format '%a %d %b %Y'
|
|
|
|
run '~/.tmux/plugins/tpm/tpm'
|