Compare commits

...

7 commits

Author SHA1 Message Date
Soliprem
eaad512c1a
Merge pull request #1039 from Cool-Game-Dev/plugin/nvim-biscuits
Some checks failed
Set up binary cache / cachix (default) (push) Has been cancelled
Set up binary cache / cachix (maximal) (push) Has been cancelled
Set up binary cache / cachix (nix) (push) Has been cancelled
Treewide Checks / Validate flake (push) Has been cancelled
Treewide Checks / Check formatting (push) Has been cancelled
Treewide Checks / Check source tree for typos (push) Has been cancelled
Treewide Checks / Validate documentation builds (push) Has been cancelled
Treewide Checks / Validate hyperlinks in documentation sources (push) Has been cancelled
Treewide Checks / Validate Editorconfig conformance (push) Has been cancelled
Build and deploy documentation / Check latest commit (push) Has been cancelled
Build and deploy documentation / publish (push) Has been cancelled
utility/nvim-biscuits: init
2025-07-26 20:22:23 +02:00
raf
00d04a4c06
Merge branch 'main' into plugin/nvim-biscuits 2025-07-24 18:23:34 +00:00
Coolio
0b325d788e
utility/nvim-biscuits: improve enable option description
Improve the grammar of the `vim.utility.nvim-biscuits.enable` option to read better in documentation.

Co-authored-by: raf <raf@notashelf.dev>
2025-07-23 15:07:20 -05:00
Cool-Game-Dev
b2a462feb7
Add release notes entry
Add missing release notes entry, previously only contained a
reference to nvim-biscuits github.
2025-07-23 12:28:29 -05:00
Cool-Game-Dev
66e32eeafa
utility/nvim-biscuits: Add pluginRC
Add the setup function for the nvim-biscuits with setupOps to pluginRC.
2025-07-23 12:20:14 -05:00
Cool-Game-Dev
55fc5fecb8
fixed release notes
Add the plugin under my own name instead of @NotAShelf
2025-07-22 19:06:57 -05:00
Cool-Game-Dev
29d6f51cbc
utility/nvim-biscuits: init
Add `utility.nvim-biscuits` module. Adds the plugin nvim-biscuits, a
rewrite of assorted biscuits.
2025-07-22 12:23:28 -05:00
7 changed files with 59 additions and 0 deletions

View file

@ -194,6 +194,8 @@ isMaximal: {
multicursors.enable = isMaximal;
smart-splits.enable = isMaximal;
undotree.enable = isMaximal;
nvim-biscuits.enable = isMaximal;
motion = {
hop.enable = true;
leap.enable = true;

View file

@ -476,3 +476,10 @@
[soliprem](https://github.com/soliprem):
- fix broken `neorg` grammars
[Cool-Game-Dev](https://github.com/Cool-Game-Dev):
[nvim-biscuits]: https://github.com/code-biscuits/nvim-biscuits
- Add [nvim-biscuits] to show block context. Available at
`vim.utility.nvim-biscuits`.

View file

@ -15,6 +15,7 @@
./multicursors
./new-file-template
./nix-develop
./nvim-biscuits
./oil-nvim
./outline
./preview

View file

@ -0,0 +1,20 @@
{
config,
lib,
...
}: let
inherit (lib.modules) mkIf;
inherit (lib.nvim.dag) entryAnywhere;
inherit (lib.nvim.lua) toLuaObject;
cfg = config.vim.utility.nvim-biscuits;
in {
config = mkIf cfg.enable {
vim = {
startPlugins = ["nvim-biscuits"];
pluginRC.nvim-biscuits = entryAnywhere ''
require('nvim-biscuits').setup(${toLuaObject cfg.setupOpts})
'';
};
};
}

View file

@ -0,0 +1,6 @@
{
imports = [
./config.nix
./nvim-biscuits.nix
];
}

View file

@ -0,0 +1,10 @@
{lib, ...}: let
inherit (lib.options) mkEnableOption;
inherit (lib.nvim.types) mkPluginSetupOption;
in {
options.vim.utility.nvim-biscuits = {
enable = mkEnableOption "a Neovim port of Assorted Biscuits [nvim-biscuits]";
setupOpts = mkPluginSetupOption "nvim-biscuits" {};
};
}

View file

@ -1708,6 +1708,19 @@
"url": "https://github.com/windwp/nvim-autopairs/archive/4d74e75913832866aa7de35e4202463ddf6efd1b.tar.gz",
"hash": "0q6pv89x05l71nfg2chqf9p0d2ha72agmll2svimq0npp84ymfxz"
},
"nvim-biscuits": {
"type": "Git",
"repository": {
"type": "GitHub",
"owner": "code-biscuits",
"repo": "nvim-biscuits"
},
"branch": "main",
"submodules": false,
"revision": "ff1d12c8b47cd28723da593b2cfa2e98391d439a",
"url": "https://github.com/code-biscuits/nvim-biscuits/archive/ff1d12c8b47cd28723da593b2cfa2e98391d439a.tar.gz",
"hash": "18dvvg32nxrdp1ydbvxrzkdg7q214naq2bphs7y1s9zmjhyj25pm"
},
"nvim-bufferline-lua": {
"type": "Git",
"repository": {