๐Ÿ”’ Backup for my config files
dotfiles
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

cleanup fish plugins

kacaii 0200b98b 602954bd

+6 -14
+1
.config/fish/config.fish
··· 13 13 set -g dotfiles $HOME/dotfiles 14 14 set -g tmux_config_file $HOME/.tmux.conf 15 15 16 + # ๏‚ Read JJ current descriptin 16 17 set -g JJ_DESCRIPTION ( get_jj_description ) 17 18 18 19 # ๎™ Git Prompt Customization
-3
.config/fish/fish_plugins
··· 1 1 jorgebucaran/fisher 2 - jethrokuan/z 3 2 catppuccin/fish 4 3 decors/fish-colored-man 5 - patrickf1/fzf.fish 6 - jorgebucaran/autopair.fish
+5 -11
.config/fish/functions/basic_custom_setup.fish
··· 45 45 46 46 # Install missing homebrew formulaes 47 47 for formulae in $ensure_installed_homebrew 48 - if not command -q $formulae 49 - brew install -q $formulae 50 - end 48 + command -q $formulae; or brew install -q $formulae 51 49 end 52 50 53 51 # Fisher ··· 59 57 # Fisher Plugins 60 58 set -l ensure_installed_fisher \ 61 59 jorgebucaran/fisher \ 62 - jethrokuan/z \ 63 60 catppuccin/fish \ 64 - decors/fish-colored-man \ 65 - patrickf1/fzf.fish \ 66 - jorgebucaran/autopair.fish 61 + decors/fish-colored-man 67 62 68 63 # Install missing fisher plugins 69 - for fisher_plugin in $ensure_installed_fisher 70 - if not contains $fisher_plugin (cat $__fish_config_dir/fish_plugins) 71 - fisher install $fisher_plugin 72 - end 64 + for plugin in $ensure_installed_fisher 65 + contains $plugin (cat $__fish_config_dir/fish_plugins) 66 + or fisher install $plugin 73 67 end 74 68 75 69 end