Updated .tmux.conf

I'm not even sure what is different now, but the `.tmux.conf` in the
repo was so old and the `diff` was extensive.  All I know is that this
is the current `.tmux.conf` I use everywhere now (circa 2/2024)

I also updated the README and removed the `.gitignore`
This commit is contained in:
2024-02-21 15:35:33 -05:00
parent b3bf89db25
commit c739f14c6f
3 changed files with 22 additions and 36 deletions

View File

@@ -1,7 +1,3 @@
# use UTF8
set -g utf8
set-window-option -g utf8 on
## make tmux display things in 256 colors
set -g default-terminal "screen-256color"
@@ -58,30 +54,20 @@ bind L resize-pane -R 5
## set some pretty colors
## ----------------------
## set pane colors - hilight the active pane
set -g pane-border-bg colour0
set -g pane-border-fg colour1
set -g pane-active-border-bg colour8
set -g pane-active-border-fg colour2
set -g pane-border-style bg=colour0,fg=colour1
set -g pane-active-border-style bg=colour8,fg=colour2
## colorize messages in the command line
set-option -g message-bg colour0
set-option -g message-fg colour9
set-option -g message-style bg=colour0,fg=colour9
#set inactive/active window styles
set -g window-style 'fg=colour247,bg=colour236'
set -g window-active-style 'fg=colour250,bg=black'
# set the pane border colors
#set -g pane-border-fg colour250
#set -g pane-border-bg colour236
#set -g pane-active-border-fg colour250
#set -g pane-active-border-bg colour250
set -g window-style fg=colour247,bg=colour236
set -g window-active-style fg=colour250,bg=black
## ----------------------
## Status Bar
## -----------------------
set-option -g status on # turn the status bar on
set -g status-utf8 on # set utf-8 for the status bar
set -g status-interval 5 # set update frequencey (default 15 seconds)
set -g status-justify centre # center window list for clarity
@@ -90,23 +76,20 @@ setw -g monitor-activity on
set -g visual-activity on
## set color for status bar
set-option -g status-bg colour0
set-option -g status-fg colour7
set-option -g status-attr bright
set-option -g status-style bg=colour0,fg=colour7,bright
## set window list colors
set-window-option -g window-status-fg colour6
set-window-option -g window-status-bg colour0
set-window-option -g window-status-attr dim
set-window-option -g window-status-current-fg colour11
set-window-option -g window-status-current-bg colour0
set-window-option -g window-status-current-attr bright
set-window-option -g window-status-style fg=colour8,bg=colour0,bright
set-window-option -g window-status-current-style fg=colour35,bg=colour0,bright
## show host name and IP address on left side of status bar
set -g status-left-length 70
set -g status-left "#[fg=colour7]#h : #(ifconfig eth0 | grep 'inet ' | awk '{print $2}') "
set -g status-left "#[fg=colour7]#h"
## show session name, window & pane number, date and time on right side of status bar
set -g status-right-length 60
set -g status-right "#[fg=colour7]#S w#I:p#P | %b %d | %H:%M"
# These make tmux transparent again
set -g "window-style" "bg=default"
set -g "window-active-style" "bg=default"