51 lines
1.4 KiB
Fish
Executable file
51 lines
1.4 KiB
Fish
Executable file
source (dirname (status --current-filename))/paths.fish
|
|
|
|
for s in $ENV_PATH/*/config.d.fish
|
|
source $s (dirname $s)
|
|
end
|
|
|
|
status --is-interactive || exit
|
|
|
|
for f in vars colors prompt functions key-bindings
|
|
source $FISH_PATH/$f.fish
|
|
end
|
|
|
|
if has_command brew && test -f (brew --prefix asdf)/libexec/asdf.fish
|
|
set --universal --export ASDF_DIR (brew --prefix asdf)
|
|
source (brew --prefix asdf)/libexec/asdf.fish
|
|
else if test -f $HOME/.asdf/asdf.fish
|
|
source $HOME/.asdf/asdf.fish
|
|
else if test -f /opt/asdf-vm/asdf.fish
|
|
source /opt/asdf-vm/asdf.fish
|
|
end
|
|
|
|
if test -f /usr/share/password-store/extensions/otp.bash
|
|
source $FISH_PATH/pass-otp-completions.fish
|
|
end
|
|
|
|
if test -f /nix/var/nix/profiles/default/etc/profile.d/nix-daemon.sh
|
|
set nix_profiles /nix/var/nix/profiles/default $HOME/.nix-profile
|
|
set --export --universal NIX_PROFILES "$nix_profiles"
|
|
|
|
if set -q NIX_SSL_CERT_FILE
|
|
:
|
|
elif test -e /etc/ssl/certs/ca-certificates.crt
|
|
set --export --universal NIX_SSL_CERT_FILE=/etc/ssl/certs/ca-certificates.crt
|
|
else
|
|
for p in (string split $NIX_PROFILES)
|
|
test -e $p/etc/ssl/certs/ca-bundle.crt && \
|
|
set --export --universal NIX_SSL_CERT_FILE=$p/etc/ssl/certs/ca-bundle.crt
|
|
end
|
|
end
|
|
|
|
set --prepend --export --global fish_user_paths $HOME/.nix-profile/bin /nix/var/nix/profiles/default/bin
|
|
end
|
|
|
|
if has_command nnn
|
|
source $DOTFILES_PATH/common/nnn/config.fish
|
|
end
|
|
|
|
test $PWD = $HOME && begin
|
|
cd $NICE_HOME || cd
|
|
end
|