From e03a9b9860d69a8c17cd95870d06cf727bc94bb0 Mon Sep 17 00:00:00 2001 From: Stefan Imhoff Date: Fri, 12 Jul 2024 21:00:10 +0200 Subject: [PATCH] chore(nix): remove asdf sourcing --- fish/config.fish | 17 ++++------------- zsh/zshrc | 4 ---- 2 files changed, 4 insertions(+), 17 deletions(-) diff --git a/fish/config.fish b/fish/config.fish index 86163e0..15c3538 100644 --- a/fish/config.fish +++ b/fish/config.fish @@ -5,10 +5,10 @@ end # *** *** Configuration *** *** # Base16 Shell -if status --is-interactive - set BASE16_SHELL "$HOME/.config/base16-shell/" - source "$BASE16_SHELL/profile_helper.fish" -end +# if status --is-interactive +# set BASE16_SHELL "$HOME/.config/base16-shell/" +# source "$BASE16_SHELL/profile_helper.fish" +# end # Use wezterm.terminfo # curl https://raw.githubusercontent.com/wez/wezterm/master/termwiz/data/wezterm.terminfo | tic -x - @@ -78,15 +78,6 @@ set --export FZF_ALT_C_OPTS "--preview 'tree -C {} | head -50'" set --export FZF_COMPLETE 0 -# asdf Version Manager -source $(dirname $(dirname $(readlink -f $(which asdf))))/share/asdf-vm/asdf.fish - -# Conda -set conda_path (brew --prefix)/Caskroom/miniconda/base/bin/conda -if test -f $conda_path - eval $conda_path "shell.fish" hook $argv | source -end - # Nix set nix_path /nix/var/nix/profiles/default/etc/profile.d/nix-daemon.sh if test -f $nix_path diff --git a/zsh/zshrc b/zsh/zshrc index bab3522..3418cac 100644 --- a/zsh/zshrc +++ b/zsh/zshrc @@ -68,10 +68,6 @@ fi # Man export MANPATH="/usr/local/man:$MANPATH" -# Asdf -. "$(brew --prefix)/opt/asdf/libexec/asdf.sh" -source "${XDG_CONFIG_HOME:-$HOME/.config}/asdf-direnv/zshrc" - # Volta export VOLTA_HOME="$HOME/.volta" export PATH="$VOLTA_HOME/bin:$PATH"