From 8ec317f582f74d5b6c39e1124322e4de610ef840 Mon Sep 17 00:00:00 2001 From: Ismo Vuorinen Date: Thu, 17 Oct 2024 23:29:40 +0300 Subject: [PATCH] chore: tweaks and cleanup --- base/tool-versions | 2 -- config/direnv/direnv.toml | 2 +- config/exports | 3 +-- 3 files changed, 2 insertions(+), 5 deletions(-) diff --git a/base/tool-versions b/base/tool-versions index 1a50fab..95776b5 100644 --- a/base/tool-versions +++ b/base/tool-versions @@ -26,5 +26,3 @@ yq 4.44.3 bats 1.11.0 gitleaks 8.18.4 delta 0.18.1 -sops 3.9.0 -eza system diff --git a/config/direnv/direnv.toml b/config/direnv/direnv.toml index 7579a52..bacb313 100644 --- a/config/direnv/direnv.toml +++ b/config/direnv/direnv.toml @@ -5,7 +5,7 @@ hide_env_diff = true [whitelist] prefix = [ - "~/Code/ivuorinen/" + "~/Code/" ] exact = [ "~/.dotfiles/.envrc" diff --git a/config/exports b/config/exports index 92c10f6..4b3fcf9 100755 --- a/config/exports +++ b/config/exports @@ -25,12 +25,11 @@ fi # Load asdf export ASDF_DIR="$XDG_BIN_HOME/asdf" if [[ -d $ASDF_DIR ]]; then - [[ -d $ASDF_DIR/bin ]] && x-path-prepend "$ASDF_DIR/bin" - [[ -d $ASDF_DIR/shims ]] && x-path-prepend "$ASDF_DIR/shims" [[ -d $ASDF_DIR/completions ]] && fpath=("$ASDF_DIR/completions" $fpath) [[ -d $ASDF_DIR/plugins ]] && fpath=("$ASDF_DIR/plugins" $fpath) source "$ASDF_DIR/asdf.sh" fi +export PATH="$ASDF_DIR/bin:$ASDF_DIR/shims:$PATH" if ! command -v msg &> /dev/null; then # Function to print messages if VERBOSE is enabled