feat: upgrade runtimes and neovim config #216

Merged
joao.dubas merged 22 commits from jpd-upgrade-mise-runtimes into main 2025-04-24 11:43:40 +00:00
Showing only changes of commit 90255f81ef - Show all commits

View File

@ -150,13 +150,26 @@ return {
lazy = false, lazy = false,
version = false, version = false,
opts = { opts = {
provider = 'claude', provider = 'gemini_pro',
auto_suggestion_provider = 'claude', auto_suggestion_provider = 'gemini_flash',
claude = { claude = {
endpoint = 'https://api.anthropic.com',
model = 'claude-3-7-sonnet-20250219', model = 'claude-3-7-sonnet-20250219',
temperature = 0, temperature = 0,
max_tokens = 4096, max_tokens = 20480,
},
vendors = {
gemini_pro = {
__inherited_from = 'gemini',
model = 'gemini-2.5-pro-exp-03-25',
temperature = 0.25,
max_tokens = 204800,
},
gemini_flash = {
__inherited_from = 'gemini',
model = 'gemini-2.0-flash',
temperature = 0.25,
max_tokens = 20480,
},
}, },
behaviour = { behaviour = {
auto_suggestions = false, auto_suggestions = false,
@ -236,10 +249,12 @@ return {
}, },
build = 'make', build = 'make',
dependencies = { dependencies = {
'nvim-treesitter/nvim-treesitter',
'stevearc/dressing.nvim', 'stevearc/dressing.nvim',
'nvim-lua/plenary.nvim', 'nvim-lua/plenary.nvim',
'MunifTanjim/nui.nvim', 'MunifTanjim/nui.nvim',
'hrsh7th/nvim-cmp', 'hrsh7th/nvim-cmp',
'nvim-telescope/telescope.nvim',
'nvim-tree/nvim-web-devicons', 'nvim-tree/nvim-web-devicons',
{ {
'HakonHarnes/img-clip.nvim', 'HakonHarnes/img-clip.nvim',