Creating dotfiles for terminals

dot files for terminals

a
This commit is contained in:
2025-10-06 16:05:23 +11:00
commit cea1901016
37 changed files with 1577 additions and 0 deletions

12
nushell/env.nu Normal file
View File

@@ -0,0 +1,12 @@
# 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"