feat: custom ia plugins
This commit is contained in:
parent
d84ee45c9b
commit
35f507e37b
|
|
@ -7,6 +7,7 @@ return {
|
||||||
provider = 'copilot',
|
provider = 'copilot',
|
||||||
cursor_applying_provider = 'copilot',
|
cursor_applying_provider = 'copilot',
|
||||||
copilot = {
|
copilot = {
|
||||||
|
model = 'claude-3.7-sonnet',
|
||||||
temperature = 0,
|
temperature = 0,
|
||||||
max_tokens = 8192,
|
max_tokens = 8192,
|
||||||
},
|
},
|
||||||
|
|
@ -23,6 +24,7 @@ return {
|
||||||
'nvim-telescope/telescope.nvim', -- for file_selector provider telescope
|
'nvim-telescope/telescope.nvim', -- for file_selector provider telescope
|
||||||
'hrsh7th/nvim-cmp', -- autocompletion for avante commands and mentions
|
'hrsh7th/nvim-cmp', -- autocompletion for avante commands and mentions
|
||||||
'nvim-tree/nvim-web-devicons', -- or echasnovski/mini.icons
|
'nvim-tree/nvim-web-devicons', -- or echasnovski/mini.icons
|
||||||
|
'zbirenbaum/copilot.lua', -- for providers='copilot'
|
||||||
{
|
{
|
||||||
-- Make sure to set this up properly if you have lazy=true
|
-- Make sure to set this up properly if you have lazy=true
|
||||||
'MeanderingProgrammer/render-markdown.nvim',
|
'MeanderingProgrammer/render-markdown.nvim',
|
||||||
|
|
|
||||||
|
|
@ -18,11 +18,7 @@ return {
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
filetypes = {
|
filetypes = {
|
||||||
yaml = true,
|
['*'] = true,
|
||||||
markdown = true,
|
|
||||||
golang = true,
|
|
||||||
rust = true,
|
|
||||||
lua = true,
|
|
||||||
help = false,
|
help = false,
|
||||||
gitcommit = false,
|
gitcommit = false,
|
||||||
gitrebase = false,
|
gitrebase = false,
|
||||||
|
|
@ -30,7 +26,6 @@ return {
|
||||||
svn = false,
|
svn = false,
|
||||||
cvs = false,
|
cvs = false,
|
||||||
json = false,
|
json = false,
|
||||||
['*'] = false,
|
|
||||||
},
|
},
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue