Skip to content

Commit b12b6c2

Browse files
committed
feat(minimax): sync to 7a920d2
1 parent c6e3924 commit b12b6c2

File tree

2 files changed

+9
-4
lines changed

2 files changed

+9
-4
lines changed

MiniMax/CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
_Generated from the `main` branch of 'MiniMax'_
22

3+
## 2025-12-16 {#2025-12-16}
4+
5+
- Update 'nvim-treesitter/nvim-treesitter' plugin to not explicitly use `main` branch as it is now the default.
6+
7+
- Update 'mason-org/mason.nvim' example to use `now_if_args` instead of `later`. Otherwise LSP server installed via Mason will not yet be available if Neovim is started as `nvim -- path/to/file`.
8+
39
## 2025-11-22 {#2025-11-22}
410

511
- Update `<Leader>fs` mapping to use `"workspace_symbol_live"` scope for `:Pick lsp` instead of `"workspace_symbol"`

MiniMax/configs/nvim-0.11/index.qmd

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1341,14 +1341,13 @@ local now_if_args = _G.Config.now_if_args
13411341
now_if_args(function()
13421342
add({
13431343
source = 'nvim-treesitter/nvim-treesitter',
1344-
-- Use `main` branch since `master` branch is frozen, yet still default
1345-
checkout = 'main',
13461344
-- Update tree-sitter parser after plugin is updated
13471345
hooks = { post_checkout = function() vim.cmd('TSUpdate') end },
13481346
})
13491347
add({
13501348
source = 'nvim-treesitter/nvim-treesitter-textobjects',
1351-
-- Same logic as for 'nvim-treesitter'
1349+
-- Use `main` branch since `master` branch is frozen, yet still default
1350+
-- It is needed for compatibility with 'nvim-treesitter' `main` branch
13521351
checkout = 'main',
13531352
})
13541353

@@ -1451,7 +1450,7 @@ later(function() add('rafamadriz/friendly-snippets') end)
14511450
-- If you need them to work elsewhere, consider using other package managers.
14521451
--
14531452
-- You can use it like so:
1454-
-- later(function()
1453+
-- now_if_args(function()
14551454
-- add('mason-org/mason.nvim')
14561455
-- require('mason').setup()
14571456
-- end)

0 commit comments

Comments
 (0)