feat(tmux): remove themes and add tmux-fingers and remove path bug

This commit is contained in:
2025-10-14 02:13:06 +01:00
parent 7b5100c2e8
commit bbbc990eea
3 changed files with 2 additions and 29 deletions

View File

@@ -1,14 +0,0 @@
# --> Catppuccin (Frappe)
thm_bg="#303446"
thm_fg="#c6d0f5"
thm_cyan="#99d1db"
thm_black="#292c3c"
thm_gray="#414559"
thm_magenta="#ca9ee6"
thm_pink="#f4b8e4"
thm_red="#e78284"
thm_green="#a6d189"
thm_yellow="#e5c890"
thm_blue="#8caaee"
thm_orange="#ef9f76"
thm_black4="#626880"

View File

@@ -1,14 +0,0 @@
#--> Catppuccin (Latte)
bg="dce0e8"
fg="4c4f69"
cyan="179299"
black="e6e9ef"
gray="bcc0cc"
magenta="ea76cb"
pink="8839ef"
red="d20f39"
green="40a02b"
yellow="df8e1d"
blue="1e66f5"
orange="fe640b"
black4="acb0be"

View File

@@ -32,12 +32,14 @@ set -g @plugin 'tmux-plugins/tpm'
set -g @plugin 'tmux-plugins/tmux-sensible' set -g @plugin 'tmux-plugins/tmux-sensible'
set -g @plugin 'niqodea/tmux-matryoshka' set -g @plugin 'niqodea/tmux-matryoshka'
set -g @plugin 'laktak/extrakto' set -g @plugin 'laktak/extrakto'
set -g @plugin 'Morantron/tmux-fingers'
# Plugin settings # Plugin settings
set -g @resurrect-strategy-nvim 'session' set -g @resurrect-strategy-nvim 'session'
set -g @resurrect-capture-pane-contents 'on' set -g @resurrect-capture-pane-contents 'on'
set -g @continuum-save-interval '5' set -g @continuum-save-interval '5'
set -g @open-lazygit 'g' set -g @open-lazygit 'g'
set -g @fingers-key f
# Binds # Binds
bind-key 'x' kill-pane bind-key 'x' kill-pane
@@ -78,5 +80,4 @@ unbind-key -T copy-mode-vi MouseDragEnd1Pane
bind-key -T copy-mode-vi MouseDown1Pane select-pane\; send-keys -X clear-selection bind-key -T copy-mode-vi MouseDown1Pane select-pane\; send-keys -X clear-selection
# Initialize TMUX plugin manager (keep this line at the very bottom of tmux.conf) # Initialize TMUX plugin manager (keep this line at the very bottom of tmux.conf)
set-environment -g PATH "/opt/homebrew/bin:/bin:/usr/bin"
run '~/.config/tmux/plugins/tpm/tpm' run '~/.config/tmux/plugins/tpm/tpm'