~gagbo/cz-dotfiles

339575316f5b28e89e5315569ddd43196417af3b — Gerry Agbobada 1 year, 6 months ago 30bde55
Add pnpm detection
M home/dot_config/fish/conf.d/00-local-path.fish => home/dot_config/fish/conf.d/00-local-path.fish +1 -0
@@ 7,3 7,4 @@ set -gx PATH $HOME/.local/bin $PATH
if test -s /opt/homebrew/bin/brew
    eval (/opt/homebrew/bin/brew shellenv fish)
end


M home/dot_config/fish/conf.d/80-programming_lang_path_hacks.fish => home/dot_config/fish/conf.d/80-programming_lang_path_hacks.fish +8 -1
@@ 7,7 7,14 @@ set -gx PATH $HOME/go/bin $PATH
set -gx PATH /usr/local/go/bin $PATH

# Javascript
set -gx PATH $HOME/.yarn/bin $PATH
## Yarn
if test -d $HOME/.yarn/bin
  set -gx PATH $HOME/.yarn/bin $PATH
end
## Pnpm
if test -d $HOME/.local/share/pnpm
  set -gx PATH $HOME/.local/share/pnpm $PATH
end

# Lua
if command -q luarocks