From 301308469a2943e79bcdac5cafde983ea2681d3f Mon Sep 17 00:00:00 2001 From: Scott Carroll Date: Sun, 19 Oct 2025 21:06:49 +0100 Subject: [PATCH] tmux colours and fzf update --- base/.tmux.conf | 4 +++- .../.bash-profile.d/00-fzf-include-dotfiles-exclude-git.bash | 2 ++ 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/base/.tmux.conf b/base/.tmux.conf index 53ae85d..dd413e6 100644 --- a/base/.tmux.conf +++ b/base/.tmux.conf @@ -25,7 +25,9 @@ if-shell -b '[ "$(echo "$TMUX_VERSION >= 3.3" | bc)" = 1 ]' { set -g allow-passthrough on } -set-option -a terminal-features 'xterm-256color:RGB' +set-option -ag terminal-features 'xterm-256color:RGB' +set -ag terminal-features ",gnome*:RGB" + set-option -sg escape-time 10 set-option -g focus-events on diff --git a/bashprofile/.bash-profile.d/00-fzf-include-dotfiles-exclude-git.bash b/bashprofile/.bash-profile.d/00-fzf-include-dotfiles-exclude-git.bash index d2e45f0..acc3062 100644 --- a/bashprofile/.bash-profile.d/00-fzf-include-dotfiles-exclude-git.bash +++ b/bashprofile/.bash-profile.d/00-fzf-include-dotfiles-exclude-git.bash @@ -1,3 +1,5 @@ export FZF_DEFAULT_COMMAND="rg --files --follow --no-ignore-vcs --hidden -g '!{**/node_modules/*,**/.git/*}'" export FZF_CTRL_T_COMMAND="rg --files --follow --no-ignore-vcs --hidden -g '!{**/node_modules/*,**/.git/*}'" export FZF_COMPLETION_TRIGGER='\\' +export FZF_DEFAULT_COMMAND="rg --files --follow --no-ignore-vcs --hidden -g '!{**/__pycache__/*,**/.npm/*,**/node_modules/*,**/.git/*}'" +export FZF_CTRL_T_COMMAND="rg --files --follow --no-ignore-vcs --hidden -g '!{**/__pycache__/*,**/.npm/*,**/node_modules/*,**/.git/*}'"