cursor extension

This commit is contained in:
2026-04-16 09:57:23 +01:00
parent c004356b5a
commit 534ec8b99f
3 changed files with 1584 additions and 5 deletions
+11 -2
View File
@@ -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