mirror of
https://github.com/nix-community/nixvim.git
synced 2025-11-08 19:46:06 +01:00
20 lines
347 B
Nix
20 lines
347 B
Nix
{ lib, ... }:
|
|
lib.nixvim.plugins.mkNeovimPlugin {
|
|
name = "colorful-winsep";
|
|
package = "colorful-winsep-nvim";
|
|
|
|
maintainers = [ lib.maintainers.saygo-png ];
|
|
|
|
settingsExample = {
|
|
highlight = "#b8bb26";
|
|
excluded_ft = [ "NvimTree" ];
|
|
border = [
|
|
"━"
|
|
"┃"
|
|
"┏"
|
|
"┓"
|
|
"┗"
|
|
"┛"
|
|
];
|
|
};
|
|
}
|