feat: upgrade mise runtimes and neovim/mcphub configuration (#254)

# `mise` changes

Upgraded:

* `aqua:CircleCI-Public/circleci-cli`: from 0.1.32580 to 0.1.32638
* `aqua:alexellis/k3sup`: from 0.13.9 to 0.13.10
* `aqua:astral-sh/uv`: from 0.7.14 to 0.7.18
* `aqua:aws/aws-cli`: from 2.27.41 to 2.27.47
* `aqua:dagger/dagger`: from 0.18.10 to 0.18.12
* `aqua:eza-community/eza`: from 0.21.5 to 0.21.6
* `aqua:junegunn/fzf`: from 0.62.0 to 0.63.0
* `aqua:pnpm/pnpm`: from 10.12.2 to 10.12.4
* `aqua:sbstp/kubie`: from 0.25.2 to 0.26.0
* `npm:@anthropic-ai/claude-code`: from 1.0.31 to 1.0.41
* `pipx:aider-chat`: from 0.84.0 to 0.85.1
* `pipx:vectorcode`: from 0.7.1 to 0.7.5
* `ubi:block/goose`: from 1.0.29 to 1.0.31
* `ubi:sst/opencode`: from 0.1.124 to 0.1.174
* `ubi:supabase/cli`: from 2.26.9 to 2.30.4

Added:

* `npm:@google/gemini-cli`

Removed:

* `yarn`

Enabled `idiomatic_version_file_enable_tools` setting for `go`, `ruby`, and `python` tools.

# `neovim` changes

Added `mcp` servers:

*  `fetch`
* `filesystem`
* `memory`

Updated reference to `gemini` models.

Reviewed-on: #254
Co-authored-by: Joao P Dubas <joao.dubas+gitea@gmail.com>
Co-committed-by: Joao P Dubas <joao.dubas+gitea@gmail.com>
This commit is contained in:
2025-07-03 15:04:34 +00:00
committed by João Paulo Dubas
parent 2302e4ca7d
commit e6a3064f30
3 changed files with 57 additions and 27 deletions

View File

@@ -214,7 +214,7 @@ return {
name = 'gemini_pro',
schema = {
model = {
default = 'gemini-2.5-pro-preview-05-06',
default = 'gemini-2.5-pro',
},
},
})
@@ -224,7 +224,7 @@ return {
name = 'gemini_flash',
schema = {
model = {
default = 'gemini-2.0-flash',
default = 'gemini-2.5-flash',
},
},
})
@@ -319,9 +319,8 @@ return {
'claude-sonnet-4-20250514',
},
gemini = {
'gemini-2.5-pro-preview-05-06',
'gemini-2.5-flash-preview-05-20',
'gemini-2.0-flash',
'gemini-2.5-pro',
'gemini-2.5-flash',
},
groq = {
'deepseek-r1-distill-llama-70b',
@@ -455,13 +454,13 @@ return {
},
['gemini-pro'] = {
__inherited_from = 'gemini',
model = 'gemini-2.5-pro-preview-05-06',
model = 'gemini-2.5-pro',
timeout = 600000,
extra_request_body = { max_tokens = 40960 },
},
['gemini-flash'] = {
__inherited_from = 'gemini',
model = 'gemini-2.0-flash',
model = 'gemini-2.5-flash',
timeout = 600000,
extra_request_body = { max_tokens = 20480 },
},