13 lines
379 B
Plaintext
13 lines
379 B
Plaintext
# This file is for environment variables only.
|
|
|
|
# 1. Add binary paths to the PATH environment variable.
|
|
# We prepend so they are found before system defaults.
|
|
$env.PATH = ($env.PATH |
|
|
prepend '~/.fzf/bin' |
|
|
prepend '~/.local/bin' |
|
|
prepend '/snap/bin'
|
|
)
|
|
|
|
# 2. Source the Cargo environment to add its bin directory to the PATH.
|
|
source $"($nu.home-path)/.cargo/env.nu"
|