diff options
| author | kj_sh604 | 2026-06-08 21:54:59 -0400 |
|---|---|---|
| committer | kj_sh604 | 2026-06-08 21:54:59 -0400 |
| commit | e7b420d2ea2454cebd12271be1cdba5294c2e711 (patch) | |
| tree | 48c97819e6b1fa32e4a00ba576ce45fba73a1dfe /.config/nvim/init.lua | |
| parent | fc9ac023636927b1255f5f72fa6823c92ff683d4 (diff) | |
refactor: add buffer close command and change completion model
Diffstat (limited to '.config/nvim/init.lua')
| -rw-r--r-- | .config/nvim/init.lua | 3 |
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, |
