feat: minuetai back and neotree auto reveal

This commit is contained in:
2025-08-18 08:28:23 +08:00
parent d067864ac3
commit 6cfba4952b
3 changed files with 50 additions and 0 deletions
+36
View File
@@ -105,8 +105,44 @@ return {
-- options for blink-cmp-avante
},
},
minuet = {
name = "minuet",
module = "minuet.blink",
score_offset = 100,
},
},
},
},
},
{
"milanglacier/minuet-ai.nvim",
event = "InsertEnter",
config = function()
require("minuet").setup({
virtualtext = {
auto_trigger_ft = { "*" },
keymap = {
accept = "<Tab>",
accept_line = "<M-Down>",
next = "<M-]>",
prev = "<M-[>",
dismiss = "<M-BS>",
},
},
provider = "openai_fim_compatible",
provider_options = {
openai_fim_compatible = {
end_point = "https://dashscope.aliyuncs.com/compatible-mode/v1/completions",
api_key = "QWEN_API_KEY",
model = "qwen2.5-coder-32b-instruct",
name = "qwen2.5-coder-32b-instruct",
optional = {
max_tokens = 256,
top_p = 0.9,
},
},
},
})
end,
},
}
+13
View File
@@ -0,0 +1,13 @@
return {
"nvim-neo-tree/neo-tree.nvim",
config = function()
require("neo-tree").setup({
filesystem = {
follow_current_file = {
enabled = true,
leave_dirs_open = false,
},
},
})
end,
}