Porting over some stuff to fish

Detouring to get my Zsh wired up with a package / plugin manager.
This commit is contained in:
Josh Sherman 2024-10-23 22:49:55 -05:00
parent 4a06eafcbc
commit 922ada9668
No known key found for this signature in database
GPG key ID: 55B058A80530EF22

View file

@ -0,0 +1,22 @@
#!/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