I don't remember what they were for, I only remember that they were a workaround for broken termcaps on some system. Removing to see if there are any issues anywhere, as I suspect this is long fixed.
10 lines
520 B
Bash
10 lines
520 B
Bash
set -g default-terminal screen-256color
|
|
setw -g mode-keys vi
|
|
set -g status-style bg=colour233,fg=colour25
|
|
set -g status-left "#[fg=colour52]#S #[fg=colour24]⧉ "
|
|
set -g status-right "#[fg=colour22]#(whoami)#[fg=colour28]@#h #[fg=colour40]#(date +%H:%M)"
|
|
set -w -g window-status-current-style fg=colour39,bg=colour236
|
|
set -w -g window-status-bell-style fg=colour233,bg=colour124
|
|
bind c new-window -c "#{pane_current_path}"
|
|
bind '"' split-window -c "#{pane_current_path}"
|
|
bind % split-window -h -c "#{pane_current_path}"
|