mirror of
https://github.com/bgrolleman/dotfiles.git
synced 2025-12-06 05:45:24 +01:00
Random updates I forgot to commit
This commit is contained in:
@@ -7,15 +7,12 @@ return {
|
||||
---@module 'avante'
|
||||
---@type avante.Config
|
||||
opts = {
|
||||
provider = "gpt-4.1",
|
||||
provider = "gpt-5-codex",
|
||||
providers = {
|
||||
["gpt-4.1"] = {
|
||||
["gpt-5-codex"] = {
|
||||
__inherited_from = "openai",
|
||||
model = "gpt-4.1",
|
||||
},
|
||||
["gpt-4.1-mini"] = {
|
||||
__inherited_from = "openai",
|
||||
model = "gpt-4.1-mini",
|
||||
model = "gpt-5-codex",
|
||||
temperature = 1,
|
||||
},
|
||||
},
|
||||
},
|
||||
@@ -23,7 +20,7 @@ return {
|
||||
"nvim-lua/plenary.nvim",
|
||||
"MunifTanjim/nui.nvim",
|
||||
--- The below dependencies are optional,
|
||||
"echasnovski/mini.pick", -- for file_selector provider mini.pick
|
||||
"nvim-mini/mini.pick", -- for file_selector provider mini.pick
|
||||
"nvim-telescope/telescope.nvim", -- for file_selector provider telescope
|
||||
"hrsh7th/nvim-cmp", -- autocompletion for avante commands and mentions
|
||||
"ibhagwan/fzf-lua", -- for file_selector provider fzf
|
||||
|
||||
@@ -19,17 +19,17 @@ return {
|
||||
auto_show = true,
|
||||
},
|
||||
},
|
||||
file_selector = {
|
||||
provider = "telescope",
|
||||
provider_opts = {},
|
||||
},
|
||||
sources = {
|
||||
-- Add 'avante' to the list
|
||||
-- NOTE Disbable adding this until I can properly figure it out
|
||||
-- default = { "avante", "lsp", "path", "buffer" },
|
||||
default = { "avante", "lsp", "path", "buffer" },
|
||||
providers = {
|
||||
avante = {
|
||||
module = "blink-cmp-avante",
|
||||
name = "Avante",
|
||||
opts = {
|
||||
-- options for blink-cmp-avante
|
||||
},
|
||||
opts = {},
|
||||
},
|
||||
},
|
||||
},
|
||||
|
||||
@@ -1,3 +0,0 @@
|
||||
return {
|
||||
"benlubas/neorg-interim-ls",
|
||||
}
|
||||
@@ -1,6 +1,6 @@
|
||||
return {
|
||||
"MeanderingProgrammer/render-markdown.nvim",
|
||||
dependencies = { "nvim-treesitter/nvim-treesitter", "echasnovski/mini.nvim" }, -- if you use the mini.nvim suite
|
||||
dependencies = { "nvim-treesitter/nvim-treesitter", "nvim-mini/mini.nvim" }, -- if you use the mini.nvim suite
|
||||
---@module 'render-markdown'
|
||||
---@type render.md.UserConfig
|
||||
opts = {},
|
||||
|
||||
Reference in New Issue
Block a user