You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

22 lines
625 B
Cheetah

$env.PATH = ( $env.PATH
{{#if-installed node}}
| prepend './node_modules/.bin'
{{/if-installed}}
| prepend $'{{dirs.home}}/.local/bin'
{{#if-installed nenv}}
| prepend $'{{dirs.home}}/.local/share/nenv/bin'
{{/if-installed}}
{{#if-installed fnm}}
| prepend $'{{dirs.home}}/.fnm'
{{/if-installed}}
{{#if-installed nix}}
| prepend $'{{dirs.home}}/.nix-profile/bin'
{{/if-installed}}
| prepend $'/home/linuxbrew/.linuxbrew/sbin'
| prepend $'/home/linuxbrew/.linuxbrew/bin'
{{#if-installed cargo}}
| prepend $'{{dirs.home}}/.cargo/bin'
{{/if-installed}}
| prepend '{{dirs.home}}/.sst/bin'
)