From 1341aaf3b0a71154fd34606d2dee66c7167c786f Mon Sep 17 00:00:00 2001 From: Ismo Vuorinen Date: Wed, 18 Mar 2026 01:32:32 +0200 Subject: [PATCH] feat(fish): add dotnet tools to PATH --- config/fish/exports.fish | 3 +++ 1 file changed, 3 insertions(+) diff --git a/config/fish/exports.fish b/config/fish/exports.fish index 3e5fc99..fb9abc2 100644 --- a/config/fish/exports.fish +++ b/config/fish/exports.fish @@ -36,6 +36,9 @@ fish_add_path "$YARN_GLOBAL_FOLDER/bin" set -q MASON_HOME; or set -x MASON_HOME "$XDG_DATA_HOME/nvim/mason" fish_add_path "$MASON_HOME/bin" +# Add dotnet tools to path +fish_add_path "$HOME/.dotnet/tools/" + # Set Neovim environment variables test -z "$NVIM_STATE" && set -x NVIM_STATE "$XDG_STATE_HOME/nvim" test -z "$NVIM_CONFIG_HOME" && set -x NVIM_CONFIG_HOME "$XDG_CONFIG_HOME/nvim"