🧠 Add support for minuet-ai
- Adds an additional ai-completion provider: minuet-ai
This commit is contained in:
@@ -93,7 +93,7 @@ used to configure user options.
|
|||||||
|
|
||||||
- `.aitool` : **Set the AI tool**
|
- `.aitool` : **Set the AI tool**
|
||||||
This file defines the AI plugin used for code completion.
|
This file defines the AI plugin used for code completion.
|
||||||
The options are `codeium` `copilot` `tabnine` or `none`.
|
The options are `codeium` `copilot` `tabnine` `minuet` or `none`.
|
||||||
|
|
||||||
- `.wakatime` : **Enables WakaTime**
|
- `.wakatime` : **Enables WakaTime**
|
||||||
This file defines whether the WakaTime plugin is enabled.
|
This file defines whether the WakaTime plugin is enabled.
|
||||||
|
|||||||
@@ -36,6 +36,21 @@ return {
|
|||||||
end
|
end
|
||||||
end,
|
end,
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
"milanglacier/minuet-ai.nvim",
|
||||||
|
dependencies = { { "nvim-lua/plenary.nvim" }, { "hrsh7th/nvim-cmp" } },
|
||||||
|
config = function()
|
||||||
|
require("minuet").setup({ provider = "openai" })
|
||||||
|
end,
|
||||||
|
cond = function()
|
||||||
|
if
|
||||||
|
vim.fn.readfile(vim.fn.stdpath("config") .. "/.aitool")[1]
|
||||||
|
== "minuet"
|
||||||
|
then
|
||||||
|
return true
|
||||||
|
end
|
||||||
|
end,
|
||||||
|
},
|
||||||
{ import = "lazyvim.plugins.extras.coding.yanky" },
|
{ import = "lazyvim.plugins.extras.coding.yanky" },
|
||||||
{ import = "lazyvim.plugins.extras.coding.mini-surround" },
|
{ import = "lazyvim.plugins.extras.coding.mini-surround" },
|
||||||
{ import = "lazyvim.plugins.extras.vscode" },
|
{ import = "lazyvim.plugins.extras.vscode" },
|
||||||
|
|||||||
Reference in New Issue
Block a user