Skip to content

plugins/kitty-scrollback: init #3512

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 2 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions plugins/by-name/kitty-scrollback/default.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
{ lib, ... }:
lib.nixvim.plugins.mkNeovimPlugin {
name = "kitty-scrollback";
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Do we need to set packPathName to "kitty-scrollback.nvim"?

(See https://nix-community.github.io/nixvim/CONTRIBUTING.html#mkneovimplugin and :h 'packpath')

Aside: we really should add some way of asserting the correct packpath name is defined 🫤

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I have been dogfooding this for a while, and it work without.
But I'm not sure if this would be useful anyway.

package = "kitty-scrollback-nvim";

maintainers = [ lib.maintainers.nim65s ];
}
11 changes: 11 additions & 0 deletions tests/test-sources/plugins/by-name/kitty-scrollback/default.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
{
empty = {
plugins.kitty-scrollback.enable = true;
};

defaults = {
plugins.kitty-scrollback = {
enable = true;
};
};
}