Skip to content

Commit a982951

Browse files
author
Quarto GHA Workflow Runner
committed
Built site for gh-pages
1 parent f3dd001 commit a982951

File tree

15 files changed

+9817
-543
lines changed

15 files changed

+9817
-543
lines changed

.nojekyll

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
f1359fd1
1+
82993a64

MiniMax/CHANGELOG.html

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -342,7 +342,12 @@ <h2 id="toc-title">On this page</h2>
342342
<section id="2026-02-15" class="level2">
343343
<h2 class="anchored" data-anchor-id="2026-02-15">2026-02-15</h2>
344344
<ul>
345-
<li>Update ‘nvim-treesitter/nvim-treesitter-textobjects’ plugin to not explicitly use <code>main</code> branch as it is now the default.</li>
345+
<li><p>Update ‘nvim-treesitter/nvim-treesitter-textobjects’ plugin to not explicitly use <code>main</code> branch as it is now the default.</p></li>
346+
<li><p>Add new reference configs:</p>
347+
<ul>
348+
<li><code>nvim-0.10</code> - for Neovim&gt;=0.10</li>
349+
<li><code>nvim-0.12</code> - for Neovim&gt;=0.12.</li>
350+
</ul></li>
346351
</ul>
347352
</section>
348353
<section id="2026-02-10" class="level2">

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

Lines changed: 1297 additions & 0 deletions
Large diffs are not rendered by default.

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

Lines changed: 1365 additions & 0 deletions
Large diffs are not rendered by default.

MiniMax/configs/index.html

Lines changed: 15 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -321,7 +321,10 @@ <h2 id="toc-title">On this page</h2>
321321
<ul>
322322
<li><a href="#structure" id="toc-structure" class="nav-link" data-scroll-target="#structure">Structure</a>
323323
<ul>
324-
<li><a href="#init.lua" id="toc-init.lua" class="nav-link" data-scroll-target="#init.lua"><code>init.lua</code></a></li>
324+
<li><a href="#init.lua" id="toc-init.lua" class="nav-link" data-scroll-target="#init.lua"><code>init.lua</code></a>
325+
<ul class="collapse">
326+
<li><a href="#nvim-pack-lock.json-for-neovim0.12" id="toc-nvim-pack-lock.json-for-neovim0.12" class="nav-link" data-scroll-target="#nvim-pack-lock.json-for-neovim0.12"><code>nvim-pack-lock.json</code> (for Neovim&gt;=0.12)</a></li>
327+
</ul></li>
325328
<li><a href="#plugin" id="toc-plugin" class="nav-link" data-scroll-target="#plugin"><code>plugin/</code></a></li>
326329
<li><a href="#snippets" id="toc-snippets" class="nav-link" data-scroll-target="#snippets"><code>snippets/</code></a></li>
327330
<li><a href="#after" id="toc-after" class="nav-link" data-scroll-target="#after"><code>after/</code></a>
@@ -364,19 +367,26 @@ <h2 class="anchored" data-anchor-id="minimax-reference-configs">MiniMax referenc
364367
<p>The most appropriate one based on Neovim version is chosen during initial config generation.</p>
365368
<p>Available:</p>
366369
<ul>
370+
<li><a href="nvim-0.10"><code>nvim-0.10</code></a> - for Neovim&gt;=0.10</li>
367371
<li><a href="nvim-0.11"><code>nvim-0.11</code></a> - for Neovim&gt;=0.11</li>
372+
<li><a href="nvim-0.12"><code>nvim-0.12</code></a> - for Neovim&gt;=0.12 (currently under development)</li>
368373
</ul>
369-
<p>Planned (after some time of ‘nvim-0.11’ public testing):</p>
374+
<p>Differences between selected configs:</p>
370375
<ul>
371-
<li><code>nvim-0.9</code> - for Neovim&gt;=0.9</li>
372-
<li><code>nvim-0.10</code> - for Neovim&gt;=0.10</li>
373-
<li><code>nvim-0.12</code> - for Neovim&gt;=0.12</li>
376+
<li><a href="https://nvim-mini.org/MiniMax/configs/diffs/nvim-0.10_nvim-0.11">Between <code>nvim-0.10</code> and <code>nvim-0.11</code></a></li>
377+
<li><a href="https://nvim-mini.org/MiniMax/configs/diffs/nvim-0.11_nvim-0.12">Between <code>nvim-0.11</code> and <code>nvim-0.12</code></a></li>
374378
</ul>
375379
<section id="structure" class="level3">
376380
<h3 class="anchored" data-anchor-id="structure">Structure</h3>
377381
<section id="init.lua" class="level4">
378382
<h4 class="anchored" data-anchor-id="init.lua"><code>init.lua</code></h4>
379383
<p>Initial file executed first during startup.</p>
384+
<section id="nvim-pack-lock.json-for-neovim0.12" class="level5">
385+
<h5 class="anchored" data-anchor-id="nvim-pack-lock.json-for-neovim0.12"><code>nvim-pack-lock.json</code> (for Neovim&gt;=0.12)</h5>
386+
<p>Lockfile for <code>vim.pack</code> (built-in plugin manager) that contains information about all installed plugins. Provided to install necessary plugins during initial setting up at revisions that were tested to work in MiniMax.</p>
387+
<p>It is updated automatically whenever installed plugins change: their state on disk is updated, their tracked <code>version</code> is changed, they are deleted, etc. Do not delete and do not edit by hand.</p>
388+
<p>See <a href="https://neovim.io/doc/user/helptag.html?tag=vim.pack-lockfile"><code>:h vim.pack-lockfile</code></a> for more information about the lockfile and <a href="https://neovim.io/doc/user/helptag.html?tag=vim.pack"><code>:h vim.pack</code></a> about the plugin manager in general.</p>
389+
</section>
380390
</section>
381391
<section id="plugin" class="level4">
382392
<h4 class="anchored" data-anchor-id="plugin"><code>plugin/</code></h4>

0 commit comments

Comments
 (0)