2021-02-19 09:59:49 +00:00
|
|
|
# Reload tmux conf.
|
|
|
|
unbind r
|
|
|
|
bind r source-file ~/.tmux.conf\; display "Reloaded conf."
|
|
|
|
|
|
|
|
# Set color enabled
|
2022-07-08 13:33:23 +01:00
|
|
|
set -g default-terminal "screen-256color"
|
2022-08-24 14:48:58 +01:00
|
|
|
set -ga terminal-overrides ",*256col*,*kitty,alacritty:Tc"
|
2022-07-08 13:33:23 +01:00
|
|
|
|
|
|
|
# Set escape time to something sensible
|
|
|
|
set-option -sg escape-time 10
|
|
|
|
|
|
|
|
# Enable focus events
|
|
|
|
set-option -g focus-events on
|
2021-02-19 09:59:49 +00:00
|
|
|
|
2023-02-08 23:54:40 +00:00
|
|
|
#!/usr/bin/env bash
|
|
|
|
# Nightfox colors for Tmux
|
|
|
|
# Style: nightfox
|
|
|
|
# Upstream: https://github.com/edeneast/nightfox.nvim/raw/main/extra/nightfox/nightfox_tmux.tmux
|
|
|
|
set -g mode-style "fg=#131a24,bg=#aeafb0"
|
|
|
|
set -g message-style "fg=#131a24,bg=#aeafb0"
|
|
|
|
set -g message-command-style "fg=#131a24,bg=#aeafb0"
|
|
|
|
set -g pane-border-style "fg=#aeafb0"
|
|
|
|
set -g pane-active-border-style "fg=#719cd6"
|
|
|
|
set -g status "on"
|
|
|
|
set -g status-justify "left"
|
|
|
|
set -g status-style "fg=#aeafb0,bg=#131a24"
|
|
|
|
set -g status-left-length "100"
|
|
|
|
set -g status-right-length "100"
|
|
|
|
set -g status-left-style NONE
|
|
|
|
set -g status-right-style NONE
|
|
|
|
set -g status-left "#[fg=#131a24,bg=#719cd6,bold] #S #[fg=#719cd6,bg=#131a24,nobold,nounderscore,noitalics]"
|
|
|
|
set -g status-right "#[fg=#131a24,bg=#131a24,nobold,nounderscore,noitalics]#[fg=#719cd6,bg=#131a24] #{prefix_highlight} #[fg=#aeafb0,bg=#131a24,nobold,nounderscore,noitalics]#[fg=#131a24,bg=#aeafb0] %Y-%m-%d %I:%M %p #[fg=#719cd6,bg=#aeafb0,nobold,nounderscore,noitalics]#[fg=#131a24,bg=#719cd6,bold] #h "
|
|
|
|
setw -g window-status-activity-style "underscore,fg=#71839b,bg=#131a24"
|
|
|
|
setw -g window-status-separator ""
|
|
|
|
setw -g window-status-style "NONE,fg=#71839b,bg=#131a24"
|
|
|
|
setw -g window-status-format "#[fg=#131a24,bg=#131a24,nobold,nounderscore,noitalics]#[default] #I #W #F #[fg=#131a24,bg=#131a24,nobold,nounderscore,noitalics]"
|
|
|
|
setw -g window-status-current-format "#[fg=#131a24,bg=#aeafb0,nobold,nounderscore,noitalics]#[fg=#131a24,bg=#aeafb0,bold] #I #W #F #[fg=#aeafb0,bg=#131a24,nobold,nounderscore,noitalics]"
|