dotfiles/nushell/env.nu
sam rolfe cea1901016 Creating dotfiles for terminals
dot files for terminals

a
2025-10-06 16:05:23 +11:00

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"