cursor extension
This commit is contained in:
+11
-2
@@ -102,9 +102,18 @@ status is-interactive; and begin
|
||||
|
||||
end
|
||||
|
||||
# Add user local bin to PATH
|
||||
# PATH ordering: prefer Nix/system binaries over self-installed shims in ~/.local/bin
|
||||
if test (uname) = Linux
|
||||
fish_add_path -m /run/current-system/sw/bin
|
||||
end
|
||||
|
||||
# Add user local bin to PATH, but keep it after system paths on Linux
|
||||
if test -d "$HOME/.local/bin"
|
||||
fish_add_path "$HOME/.local/bin"
|
||||
if test (uname) = Linux
|
||||
fish_add_path -a -m "$HOME/.local/bin"
|
||||
else
|
||||
fish_add_path "$HOME/.local/bin"
|
||||
end
|
||||
end
|
||||
|
||||
# pnpm
|
||||
|
||||
Reference in New Issue
Block a user