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

Configure Feed

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

rename `init` to `integrations`

kacaii 1d6d78df 7ea90245

+10 -19
+3 -19
.config/fish/config.fish
··· 7 7 # ๎š‘ Global variables 8 8 set -gx EDITOR nvim 9 9 set -gx XDG_CONFIG_HOME $HOME/.config 10 - set -gx TERM xterm-256color 11 10 12 11 # ๓ฑŽ“ Rom Saves 13 12 set -g ROM_SAVES $XDG_CONFIG_HOME/retroarch/saves 14 13 15 - # ๎™ Git Prompt Customization 16 - set -g __fish_git_prompt_showdirtystate true 17 - set -g __fish_git_prompt_char_dirtystate "*" 18 - 19 - # ๏‡ฆ Setup Integrations 20 - command -q direnv; and direnv hook fish | source 21 - command -q jj; and set -g jj_config_file ( jj config path --user ) 22 - command -q keychain; and eval "$(keychain --quiet --eval github tangled)" 23 - command -q zoxide; and zoxide init fish | source 24 - command -q starship; and starship init fish | source 25 - command -q batpipe; and eval (batpipe) 26 - command -q batman; and batman --export-env | source 27 - 28 - # ๎น Load scripts 29 - set -l INIT $__fish_config_dir/init 30 - for fish_sh in $INIT/*.fish 31 - source $fish_sh 32 - end 14 + source $__fish_config_dir/modules/abbr.fish 15 + source $__fish_config_dir/modules/integrations.fish 16 + source $__fish_config_dir/modules/path.fish 33 17 34 18 # ๓ฐฏ Fzf Setup 35 19 command -q fzf; and fzf --fish | source; and set -gx FZF_DEFAULT_OPTS "\
.config/fish/init/abbr.fish .config/fish/modules/abbr.fish
.config/fish/init/ensure_path.fish .config/fish/modules/path.fish
+7
.config/fish/modules/integrations.fish
··· 1 + command -q direnv; and direnv hook fish | source 2 + command -q jj; and set -g jj_config_file ( jj config path --user ) 3 + command -q keychain; and eval "$(keychain --quiet --eval github tangled)" 4 + command -q zoxide; and zoxide init fish | source 5 + command -q starship; and starship init fish | source 6 + command -q batpipe; and eval (batpipe) 7 + command -q batman; and batman --export-env | source