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.

16 lines
416 B
Cheetah

$env.PATH = ( $env.PATH
| prepend $'{{dirs.home}}/.local/bin'
10 months ago
{{#if-installed cargo}}
| prepend $'{{dirs.home}}/.cargo/bin'
10 months ago
{{/if-installed}}
{{#if-installed nenv}}
| prepend $'{{dirs.home}}/.local/share/nenv/bin'
10 months ago
{{/if-installed}}
{{#if-installed fnm}}
| prepend $'{{dirs.home}}/.fnm'
10 months ago
{{/if-installed}}
{{#if-installed nix}}
| prepend $'{{dirs.home}}/.nix-profile/bin'
{{/if-installed}}
)