1
0
mirror of https://github.com/dcarrillo/dotfiles.git synced 2025-01-21 03:46:48 +00:00

[neovim] Add avante plugin

This commit is contained in:
Daniel Carrillo 2025-01-04 15:25:14 +01:00
parent 5c6af0d906
commit 6ba0c5d93a
Signed by: dcarrillo
GPG Key ID: E4CD5C09DAED6E16
2 changed files with 15 additions and 1 deletions

View File

@ -267,6 +267,20 @@ require("lazy").setup({
},
-- Copilot
{
"yetone/avante.nvim",
event = "VeryLazy",
lazy = false,
version = false,
opts = {
provider = "copilot",
auto_suggestions_provider = "copilot",
},
build = "make",
dependencies = {
"stevearc/dressing.nvim",
},
},
{
"zbirenbaum/copilot.lua",
cmd = "Copilot",

View File

@ -1,3 +1,3 @@
require("render-markdown").setup({
file_types = { "markdown", "copilot-chat" },
file_types = { "markdown", "copilot-chat", "Avante" },
})