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

Configure Feed

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

remove ghq

Kacaii 8dc74bd8 5bf42d4e

+5 -8
+3 -3
.config/fish/config.fish
··· 17 17 set -g __fish_git_prompt_showdirtystate true 18 18 set -g __fish_git_prompt_char_dirtystate "*" 19 19 20 - command -q zoxide; and zoxide init fish | source 21 - command -q jj; and set -g jj_config_file ( jj config path --user ) 20 + type -q zoxide; and zoxide init fish | source 21 + type -q jj; and set -g jj_config_file ( jj config path --user ) 22 22 23 23 # ๎น Load scripts 24 24 for fish_sh in $__fish_config_dir/shell/*.fish ··· 26 26 end 27 27 28 28 # ๓ฐฏ FZF 29 - command -q fzf; and fzf --fish | source; and set -gx FZF_DEFAULT_OPTS "\ 29 + type -q fzf; and fzf --fish | source; and set -gx FZF_DEFAULT_OPTS "\ 30 30 --color=bg+:#313244,bg:#1E1E2E,spinner:#F5E0DC,hl:#F38BA8 \ 31 31 --color=fg:#CDD6F4,header:#F38BA8,info:#CBA6F7,pointer:#F5E0DC \ 32 32 --color=marker:#B4BEFE,fg+:#CDD6F4,prompt:#CBA6F7,hl+:#F38BA8 \
-1
.config/fish/fish_plugins
··· 1 1 jorgebucaran/fisher 2 2 jethrokuan/z 3 - decors/fish-ghq 4 3 catppuccin/fish 5 4 decors/fish-colored-man 6 5 patrickf1/fzf.fish
+2 -4
.config/fish/functions/basic_custom_setup.fish
··· 1 1 # ๏‘„ Git ๎™ https://git-scm.com/downloads/linux 2 2 # ๏‘„ Homebrew ๎Ÿฝ $ /bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)" 3 3 # ๏‘„ Fish Shell ๎น $ brew install fish 4 - # ๏‘„ GHQ $ brew install ghq 5 4 function basic_custom_setup 6 5 # Homebrew Software -------------------------------------------------------- 7 6 set ensure_installed_homebrew \ ··· 16 15 fzf \ 17 16 gcc \ 18 17 gh \ 19 - ghq \ 20 18 gleam \ 21 19 go \ 22 20 httpie \ ··· 69 67 70 68 # Verify fisher installation ----------------------------------------------- 71 69 if not type -q fisher 72 - curl -sL https://raw.githubusercontent.com/jorgebucaran/fisher/main/functions/fisher.fish | source && fisher install jorgebucaran/fisher 70 + curl -sL https://raw.githubusercontent.com/jorgebucaran/fisher/main/functions/fisher.fish | source 71 + and fisher install jorgebucaran/fisher 73 72 end 74 73 75 74 # Fisher Plugins 76 75 set -l ensure_installed_fisher \ 77 76 jorgebucaran/fisher \ 78 77 jethrokuan/z \ 79 - decors/fish-ghq \ 80 78 catppuccin/fish \ 81 79 decors/fish-colored-man \ 82 80 patrickf1/fzf.fish \