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

Configure Feed

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

remove extra spacing

-4
-2
.config/fish/conf.d/abbr.fish
··· 1 1 if status is-interactive 2 - 3 2 # fish 4 3 abbr -a -- fcg /home/kacaii/.config/fish/config.fish 5 4 abbr -a -- s 'source /home/kacaii/.config/fish/config.fish' ··· 50 49 abbr -a -- zbw 'zig build --watch -fincremental --prominent-compile-errors' 51 50 abbr -a -- zbt 'zig build test --summary all' 52 51 abbr -a -- zbwin 'zig build -Dtarget=x86_64-windows' 53 - 54 52 end
-2
.config/fish/conf.d/integrations.fish
··· 1 1 if status is-interactive 2 - 3 2 command -q direnv; and direnv hook fish | source 4 3 command -q keychain; and eval "$(keychain --quiet --eval github tangled)" 5 4 command -q zoxide; and zoxide init fish | source 6 5 command -q batman; and batman --export-env | source 7 6 command -q fzf; and fzf --fish | FZF_ALT_C_COMMAND="" source 8 - 9 7 end