aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorkj_sh6042026-06-09 18:36:10 -0400
committerkj_sh6042026-06-09 18:36:10 -0400
commitfcab96547102df65d2ce5d745d6220b8fed40c6a (patch)
tree526b5939d72996629de0da10319df9fd6c2bb330
parentda6214317b57c615b2192f0aeec06fda29d2f84c (diff)
refactor: editor changesHEADmaster
Diffstat (limited to '')
-rw-r--r--.config/Code/User/keybindings.json16
-rw-r--r--.config/nvim/init.lua4
2 files changed, 18 insertions, 2 deletions
diff --git a/.config/Code/User/keybindings.json b/.config/Code/User/keybindings.json
index acee1bd..526e1ea 100644
--- a/.config/Code/User/keybindings.json
+++ b/.config/Code/User/keybindings.json
@@ -133,6 +133,22 @@
"command": "-workbench.action.terminal.openNativeConsole",
"when": "!terminalFocus"
},
+ // quick open / search in sidebar and copilot chat panel (mirrors vim \\ff \\fg \\fb)
+ {
+ "key": "\\ f f",
+ "command": "workbench.action.quickOpen",
+ "when": "!editorTextFocus && !terminalFocus && !textInputFocus"
+ },
+ {
+ "key": "\\ f g",
+ "command": "workbench.view.search.focus",
+ "when": "!editorTextFocus && !terminalFocus && !textInputFocus"
+ },
+ {
+ "key": "\\ f b",
+ "command": "workbench.action.quickOpenPreviousRecentlyUsedEditor",
+ "when": "!editorTextFocus && !terminalFocus && !textInputFocus"
+ },
{
"key": "ctrl+b",
"command": "-workbench.action.toggleSidebarVisibility"
diff --git a/.config/nvim/init.lua b/.config/nvim/init.lua
index 569568c..62dd5e8 100644
--- a/.config/nvim/init.lua
+++ b/.config/nvim/init.lua
@@ -445,10 +445,10 @@ if vim.fn.filereadable(_mkey) == 1 and vim.fn.filereadable(_ukey) == 1 then
end
end)(),
end_point = "https://openrouter.ai/api/v1/chat/completions",
- model = "meta-llama/llama-3.1-8b-instruct",
+ model = "deepseek/deepseek-v4-flash",
name = "Openrouter",
optional = {
- max_tokens = 256,
+ max_tokens = 384,
top_p = 0.9,
provider = {
sort = "throughput",