aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorkj_sh6042026-06-08 21:54:59 -0400
committerkj_sh6042026-06-08 21:54:59 -0400
commite7b420d2ea2454cebd12271be1cdba5294c2e711 (patch)
tree48c97819e6b1fa32e4a00ba576ce45fba73a1dfe
parentfc9ac023636927b1255f5f72fa6823c92ff683d4 (diff)
refactor: add buffer close command and change completion model
-rw-r--r--.config/nvim/init.lua3
1 files changed, 2 insertions, 1 deletions
diff --git a/.config/nvim/init.lua b/.config/nvim/init.lua
index 5507125..fdecdeb 100644
--- a/.config/nvim/init.lua
+++ b/.config/nvim/init.lua
@@ -122,6 +122,7 @@ keymap("n", "<leader>sc", ":set spell!<CR>", { noremap = true, silent = true })
keymap("n", "<A-j>", ":bnext<CR>", { noremap = true, silent = true })
keymap("n", "<A-k>", ":bprev<CR>", { noremap = true, silent = true })
+keymap("n", "<A-w>", ":close<CR>", { noremap = true })
keymap("n", "<A-q>", "ZQ", { noremap = true })
keymap("n", "<A-z>", "ZZ", { noremap = true })
@@ -435,7 +436,7 @@ 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 = "qwen/qwen3-235b-a22b-2507",
+ model = "meta-llama/llama-3.1-8b-instruct",
name = "Openrouter",
optional = {
max_tokens = 256,