dotfiles/fish/.config/fish/config.fish
Josh Sherman 922ada9668
Porting over some stuff to fish
Detouring to get my Zsh wired up with a package / plugin manager.
2024-10-23 22:49:55 -05:00

22 lines
347 B
Fish

#!/usr/bin/env fish
# Speed up `brew install`
set -gx HOMEBREW_NO_AUTO_UPDATE 1
set -gx HOMEBREW_NO_INSTALL_CLEANUP 1
source $HOME/.env
source $HOME/.aliases
eval (dircolors $HOME/.dircolors)
# Load up and configure fzf, nvm, and zsh plugins
if test (uname) = "Darwin"
# macOs
elif type -q apt
# Debian
elif type -q pacman
# Arch
end