This commit is contained in:
2025-07-26 09:39:41 -05:00
parent 12d5f94cdf
commit f2228527e5
2 changed files with 22 additions and 11 deletions

View File

@@ -5,18 +5,19 @@ return {
opts = {
-- add any opts here
-- for example
provider = "claude",
-- provider = "claude",
provider = "openai",
providers = {
-- openai = {
-- endpoint = "https://api.openai.com/v1",
-- model = "gpt-4o", -- your desired model (or use gpt-4o, etc.)
-- extra_request_body = {
-- timeout = 30000, -- Timeout in milliseconds, increase this for reasoning models
-- temperature = 0.75,
-- max_completion_tokens = 8192, -- Increase this to include reasoning tokens (for reasoning models)
-- --reasoning_effort = "medium", -- low|medium|high, only used for reasoning models
-- },
-- },
openai = {
endpoint = "https://api.openai.com/v1",
model = "gpt-4o", -- your desired model (or use gpt-4o, etc.)
extra_request_body = {
timeout = 30000, -- Timeout in milliseconds, increase this for reasoning models
temperature = 0.75,
max_completion_tokens = 8192, -- Increase this to include reasoning tokens (for reasoning models)
--reasoning_effort = "medium", -- low|medium|high, only used for reasoning models
},
},
},
},
-- if you want to build from source then do `make BUILD_FROM_SOURCE=true`

View File

@@ -0,0 +1,10 @@
return {
"brenoprata10/nvim-highlight-colors",
config = function()
local highlight = require("nvim-highlight-colors")
vim.opt.termguicolors = true
highlight.setup({})
end,
}