Kitty ui update, tmux ui update, bash source fzf correctly in arch

This commit is contained in:
Daniel Weber 2024-12-19 22:40:46 -05:00
parent 448859781a
commit 81a734bc6e
4 changed files with 11 additions and 6 deletions

View File

@ -10,8 +10,8 @@ color1 #990000
color9 #e50000
color2 #00a600
color10 #00d900
color3 #999900
color11 #e5e500
color3 #e5e500
color11 #ffff00
color4 #1f08db
color12 #0000ff
color5 #b200b2

@ -1 +1 @@
Subproject commit 6ee3d5f407646b42960e41cc097e6161c95c5552
Subproject commit dcda42d32e4c61e475f4169368fd6d1719493614

View File

@ -29,8 +29,8 @@ bind-key -r -T prefix C-j resize-pane -D 5
bind-key -r -T prefix C-h resize-pane -L 5
bind-key -r -T prefix C-l resize-pane -R 5
set -g window-style 'fg=colour238,bg=colour232'
set -g window-active-style 'fg=colour231,bg=black'
set -g window-style 'fg=#aaaaaa,bg=#070707'
set -g window-active-style 'fg=#FFFFFF,bg=black'
# Initialize TMUX plugin manager (keep this line at the very bottom of tmux.conf)
run '~/.config/tmux/plugins/tpm/tpm'

View File

@ -46,5 +46,10 @@ function fcd() {
export PATH="$HOME/.cargo/bin:$PATH"
. "$HOME/.cargo/env"
source /usr/share/fzf/shell/key-bindings.bash
if [[ "$(echo $(( lsb_release -ds || cat /etc/*release || uname -om ) | head -n1))" =~ "Arch" ]]; then
source /usr/share/fzf/key-bindings.bash
else
source /usr/share/fzf/shell/key-bindings.bash
fi