aboutsummaryrefslogtreecommitdiff
path: root/env/.config/tmux
diff options
context:
space:
mode:
authoriceyrazor <iceyrazor@mailfence.com>2025-07-29 16:20:22 -0500
committericeyrazor <iceyrazor@mailfence.com>2025-07-29 16:20:22 -0500
commit989269f4d5a0d3834bab3003cc557a5df5dbc13e (patch)
tree4aeb1785a114397866e25bd7cc5c7c9a43e42152 /env/.config/tmux
parent5887bb0d4d916215d29135567b0e75a011a30ed3 (diff)
Squashed commit of the following:
- customized tmux bar - swapped harpoon keys - fixed exit terminal key - removed trailing commas in waybar config - neovim - added proj search - added notes bind - bind to exit term (doesnt really work for me) - auto cwd OF file dir OR git main dir WHEN bufenter and bind - swaped tmux move keys - changed showmethekey windowrule
Diffstat (limited to 'env/.config/tmux')
-rwxr-xr-xenv/.config/tmux/tmux.conf31
1 files changed, 16 insertions, 15 deletions
diff --git a/env/.config/tmux/tmux.conf b/env/.config/tmux/tmux.conf
index d2b4d47..a668637 100755
--- a/env/.config/tmux/tmux.conf
+++ b/env/.config/tmux/tmux.conf
@@ -36,15 +36,15 @@ setw -g pane-base-index 1
set -g renumber-windows on # renumber windows when one is closed
# nav rebinds
-bind -r C-h select-pane -L
-bind -r C-j select-pane -D
-bind -r C-k select-pane -U
-bind -r C-l select-pane -R
+bind -r h select-pane -L
+bind -r j select-pane -D
+bind -r k select-pane -U
+bind -r l select-pane -R
-bind -r h resize-pane -L 5
-bind -r j resize-pane -D 5
-bind -r k resize-pane -U 5
-bind -r l resize-pane -R 5
+bind -r C-h resize-pane -L 5
+bind -r C-j resize-pane -D 5
+bind -r C-k resize-pane -U 5
+bind -r C-l resize-pane -R 5
bind -r m resize-pane -Z # maximize
# pane joining
@@ -60,14 +60,15 @@ bind-key -r H split-window -h -f
# colors/theme
-set -g status-bg "#333333"
+# using vars in this cause the  chars to not use the color
+set -g status-bg "#222222"
set -g status-fg "#f1f1f1"
-set -wg mode-style bg="#333334"
-set -g pane-border-style fg='#333333'
+set -wg mode-style bg="#222222"
+set -g pane-border-style fg='#222222'
set -g pane-active-border-style fg='#a030f0'
active_window_fg='#e080f0'
-set -g status-left "#[fg=${session_fg},bold,bg=${bg}][ #S] "
+set -g status-left "#[fg=#f1f1f1,bold,bg=#4020af]  #S #[fg=#4020af,bg=#222222] "
set -g status-left-length 40
-set -g window-status-current-format "#[fg=${active_window_fg},bg=default] #I:#W"
-set -g window-status-format "#[fg=${default_fg},bg=default]#I:#W"
-# set -g window-status-last-style "fg=${default_fg},bg=default"
+set -g window-status-current-format "#[fg=${active_window_fg},bg=#222222]#I:#W #[fg=#f1f1f1,bg=#222222]"
+set -g window-status-format "#[fg=#f1f1f1,bg=#222222]#I:#W #[fg=#f1f1f1,bg=#222222]"
+set -g status-right '#[fg=#4020af,bg=#222222]#[fg=#f1f1f1,bg=#4020af] @#H %H:%M %d-%b-%y'