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

Configure Feed

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

use `command` instead of `type`

kacaii 602954bd 80c31401

+8 -10
+6 -8
.config/fish/config.fish
··· 20 20 set -g __fish_git_prompt_char_dirtystate "*" 21 21 22 22 # ๏‡ฆ Setup Integrations 23 - type -q zoxide; and zoxide init fish | source 24 - type -q direnv; and direnv hook fish | source 25 - type -q task; and task --completion fish | source 26 - type -q jj; and set -g jj_config_file ( jj config path --user ) 27 - 28 - # ๏‚„ Start SSH key manager 29 - type -q keychain; and eval "$(keychain --quiet --eval github tangled)" 23 + command -q zoxide; and zoxide init fish | source 24 + command -q direnv; and direnv hook fish | source 25 + command -q task; and task --completion fish | source 26 + command -q jj; and set -g jj_config_file ( jj config path --user ) 27 + command -q keychain; and eval "$(keychain --quiet --eval github tangled)" 30 28 31 29 # ๎น Load scripts 32 30 for fish_sh in $__fish_config_dir/shell/*.fish ··· 34 32 end 35 33 36 34 # ๓ฐฏ Fzf Setup 37 - type -q fzf; and fzf --fish | source; and set -gx FZF_DEFAULT_OPTS "\ 35 + command -q fzf; and fzf --fish | source; and set -gx FZF_DEFAULT_OPTS "\ 38 36 --color=bg+:#313244,bg:#1E1E2E,spinner:#F5E0DC,hl:#F38BA8 \ 39 37 --color=fg:#CDD6F4,header:#F38BA8,info:#CBA6F7,pointer:#F5E0DC \ 40 38 --color=marker:#B4BEFE,fg+:#CDD6F4,prompt:#CBA6F7,hl+:#F38BA8 \
+2 -2
.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 type -q $formulae 48 + if not command -q $formulae 49 49 brew install -q $formulae 50 50 end 51 51 end 52 52 53 53 # Fisher 54 - if not type -q fisher 54 + if not command -q fisher 55 55 curl -sL https://raw.githubusercontent.com/jorgebucaran/fisher/main/functions/fisher.fish | source 56 56 and fisher install jorgebucaran/fisher 57 57 end