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
+10 -1
View File
@@ -102,10 +102,19 @@ status is-interactive; and begin
end 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" if test -d "$HOME/.local/bin"
if test (uname) = Linux
fish_add_path -a -m "$HOME/.local/bin"
else
fish_add_path "$HOME/.local/bin" fish_add_path "$HOME/.local/bin"
end end
end
# pnpm # pnpm
switch (uname) switch (uname)
+3 -3
View File
@@ -1,7 +1,7 @@
{ {
"lastChangelogVersion": "0.67.1", "lastChangelogVersion": "0.67.3",
"defaultProvider": "openai-codex", "defaultProvider": "cursor-acp",
"defaultModel": "gpt-5.4", "defaultModel": "auto",
"defaultThinkingLevel": "medium", "defaultThinkingLevel": "medium",
"theme": "matugen", "theme": "matugen",
"lsp": { "lsp": {
File diff suppressed because it is too large Load Diff