Fix Tmux + Vim config

This commit is contained in:
2024-05-06 22:25:58 +01:00
parent f122bc04f2
commit b9c8099df8
2 changed files with 12 additions and 7 deletions

View File

@@ -86,7 +86,7 @@
# Defines width in pixels of frame around the notification window.
# Set to 0 to disable.
frame_width = 2
frame_width = 3
# Defines color of the frame around the notification window.
frame_color = "#fe8019"

View File

@@ -9,21 +9,21 @@ bind-key b split-window
set-window-option -g window-status-style fg=colour244,bg=default,dim
# active window title colors
set-window-option -g window-status-current-style fg=color167,bg=default,bright
set-window-option -g window-status-current-style fg=orange,bg=default,bright
# pane border
set-option -g pane-border-style fg=colour236
set-option -g pane-active-border-style fg=color167 # orange
set-option -g pane-active-border-style fg=orange # orange
# message text
set-option -g message-style bg=colour235,fg=color167
set-option -g message-style bg=colour235,fg=orange
# pane number display
set-option -g display-panes-active-colour blue
set-option -g display-panes-colour color167
set-option -g display-panes-colour orange
# clock
set-window-option -g clock-mode-colour color167
set-window-option -g clock-mode-colour orange
# Leader Key
set -g prefix C-a
@@ -73,7 +73,12 @@ bind-key -T copy-mode-vi y send -X copy-selection-and-cancel
bind P paste-buffer
# highlight color
set -g mode-style "fg=black,bg=color167"
set -g mode-style "fg=black,bg=orange"
# Mouse support
set -g mouse on
# VIM Options
set-option -g focus-events on
set-option -sa terminal-features ',foot:RGB'