plugins/colorful-winsep: init

Signed-off-by: saygo-png <saygo.mail@proton.me>
This commit is contained in:
saygo-png 2025-08-06 00:06:39 +02:00 committed by Austin Horstman
parent d6b9cce8bd
commit 14849765d4
2 changed files with 121 additions and 0 deletions

View file

@ -0,0 +1,31 @@
{ lib, ... }:
lib.nixvim.plugins.mkNeovimPlugin {
name = "colorful-winsep";
packPathName = "colorful-winsep.nvim";
package = "colorful-winsep-nvim";
maintainers = [ lib.maintainers.saygo-png ];
settingsExample = {
hi = {
bg = "#7d8618";
fg = "#b8bb26";
};
only_line_seq = true;
no_exec_files = [
"packer"
"TelescopePrompt"
"mason"
"CompetiTest"
"NvimTree"
];
symbols = [
""
""
""
""
""
""
];
};
}