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
This commit is contained in:
2025-07-29 16:20:22 -05:00
parent 5887bb0d4d
commit 989269f4d5
6 changed files with 56 additions and 25 deletions

View File

@@ -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'