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
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
{
|
||||
"lastChangelogVersion": "0.67.1",
|
||||
"defaultProvider": "openai-codex",
|
||||
"defaultModel": "gpt-5.4",
|
||||
"lastChangelogVersion": "0.67.3",
|
||||
"defaultProvider": "cursor-acp",
|
||||
"defaultModel": "auto",
|
||||
"defaultThinkingLevel": "medium",
|
||||
"theme": "matugen",
|
||||
"lsp": {
|
||||
|
||||
File diff suppressed because it is too large
Load Diff
Reference in New Issue
Block a user