diff options
Diffstat (limited to '')
| -rw-r--r-- | config/nvim/lua/plugins/codecompanion.lua | 18 |
1 files changed, 14 insertions, 4 deletions
diff --git a/config/nvim/lua/plugins/codecompanion.lua b/config/nvim/lua/plugins/codecompanion.lua index a657d09..d8eec4a 100644 --- a/config/nvim/lua/plugins/codecompanion.lua +++ b/config/nvim/lua/plugins/codecompanion.lua @@ -4,10 +4,6 @@ return { "nvim-lua/plenary.nvim", "nvim-treesitter/nvim-treesitter", { - "MeanderingProgrammer/render-markdown.nvim", - ft = { "markdown", "codecompanion" }, - }, - { "ravitemer/mcphub.nvim", dependencies = { "nvim-lua/plenary.nvim", @@ -43,9 +39,12 @@ return { adapter = "scbt", tools = { opts = { + auto_submit_errors = true, -- Send any errors to the LLM automatically? + auto_submit_success = true, -- Send any successful output to the LLM automatically? default_tools = { "full_stack_dev", "mcp", + "filesystem", }, }, opts = { @@ -78,6 +77,17 @@ return { default = "qwen3-235b-it", choices = { "qwen3-235b-it", + "Qwen3-Coder-30B-A3B-Instruct-FP8", + "qwen2-5-coder-1-5b", + }, + num_ctx = { + default = 120000, + }, + think = { + default = true, + }, + keep_alive = { + default = "5m", }, }, }, |
