Skip to content

Commit 0888545

Browse files
committed
feat(minimax): sync to 70ade67
1 parent 218ff20 commit 0888545

5 files changed

Lines changed: 21 additions & 9 deletions

File tree

MiniMax/configs/diffs/nvim-0.10_nvim-0.11/index.qmd

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,9 +35,9 @@ In short:
3535
<details><summary>Diff</summary>
3636

3737
```diffhunks
38-
@@ -47,0 +48 @@
38+
@@ -51,0 +52 @@
3939
+vim.o.winborder = 'single' -- Use border in floating windows
40-
@@ -84,2 +85,2 @@
40+
@@ -88,2 +89,2 @@
4141
-vim.o.complete = '.,w,b,kspell' -- Use less sources
4242
-vim.o.completeopt = 'menuone,noselect' -- Use custom behavior
4343
+vim.o.complete = '.,w,b,kspell' -- Use less sources

MiniMax/configs/diffs/nvim-0.11_nvim-0.12/index.qmd

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -162,17 +162,17 @@ Notes:
162162
<details><summary>Diff</summary>
163163

164164
```diffhunks
165-
@@ -39,0 +40 @@
165+
@@ -43,0 +44 @@
166166
+vim.o.pumborder = 'single' -- Use border in popup menu
167-
@@ -40,0 +42 @@
167+
@@ -44,0 +46 @@
168168
+vim.o.pummaxwidth = 100 -- Make popup menu not too wide
169-
@@ -85,2 +87,3 @@
169+
@@ -89,2 +91,3 @@
170170
-vim.o.complete = '.,w,b,kspell' -- Use less sources
171171
-vim.o.completeopt = 'menuone,noselect,fuzzy,nosort' -- Use custom behavior
172172
+vim.o.complete = '.,w,b,kspell' -- Use less sources
173173
+vim.o.completeopt = 'menuone,noselect,fuzzy,nosort' -- Use custom behavior
174174
+vim.o.completetimeout = 100 -- Limit sources delay
175-
@@ -121 +124 @@
175+
@@ -125 +128 @@
176176
-MiniDeps.later(function() vim.diagnostic.config(diagnostic_opts) end)
177177
+Config.later(function() vim.diagnostic.config(diagnostic_opts) end)
178178
```

MiniMax/configs/nvim-0.10/index.qmd

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -122,8 +122,12 @@ Config.now_if_args = vim.fn.argc(-1) > 0 and MiniDeps.now or MiniDeps.later
122122
-- Here `vim.o.xxx = value` sets default value of option `xxx` to `value`.
123123
-- See `:h 'xxx'` (replace `xxx` with actual option name).
124124
--
125-
-- Option values can be customized on per buffer or window basis.
125+
-- Option values can be customized on a per buffer or window basis.
126126
-- See 'after/ftplugin/' for common example.
127+
--
128+
-- Notes:
129+
-- - Some options (like `:h 'exrc'`) need to be set before this file is sourced.
130+
-- Set them directly at the bottom of the 'init.lua' file.
127131

128132
-- stylua: ignore start
129133
-- The next part (until `-- stylua: ignore end`) is aligned manually for easier

MiniMax/configs/nvim-0.11/index.qmd

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -118,8 +118,12 @@ Config.now_if_args = vim.fn.argc(-1) > 0 and MiniDeps.now or MiniDeps.later
118118
-- Here `vim.o.xxx = value` sets default value of option `xxx` to `value`.
119119
-- See `:h 'xxx'` (replace `xxx` with actual option name).
120120
--
121-
-- Option values can be customized on per buffer or window basis.
121+
-- Option values can be customized on a per buffer or window basis.
122122
-- See 'after/ftplugin/' for common example.
123+
--
124+
-- Notes:
125+
-- - Some options (like `:h 'exrc'`) need to be set before this file is sourced.
126+
-- Set them directly at the bottom of the 'init.lua' file.
123127

124128
-- stylua: ignore start
125129
-- The next part (until `-- stylua: ignore end`) is aligned manually for easier

MiniMax/configs/nvim-0.12/index.qmd

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -193,8 +193,12 @@ end
193193
-- Here `vim.o.xxx = value` sets default value of option `xxx` to `value`.
194194
-- See `:h 'xxx'` (replace `xxx` with actual option name).
195195
--
196-
-- Option values can be customized on per buffer or window basis.
196+
-- Option values can be customized on a per buffer or window basis.
197197
-- See 'after/ftplugin/' for common example.
198+
--
199+
-- Notes:
200+
-- - Some options (like `:h 'exrc'`) need to be set before this file is sourced.
201+
-- Set them directly at the bottom of the 'init.lua' file.
198202

199203
-- stylua: ignore start
200204
-- The next part (until `-- stylua: ignore end`) is aligned manually for easier

0 commit comments

Comments
 (0)