mirror of
https://github.com/nix-community/nixvim.git
synced 2025-06-21 00:25:42 +02:00
19 lines
383 B
Nix
19 lines
383 B
Nix
{ lib, ... }:
|
|
lib.nixvim.plugins.mkNeovimPlugin {
|
|
name = "visual-whitespace";
|
|
packPathName = "visual-whitespace.nvim";
|
|
package = "visual-whitespace-nvim";
|
|
|
|
maintainers = [ lib.maintainers.khaneliman ];
|
|
|
|
settingsExample = {
|
|
enabled = true;
|
|
match_types = {
|
|
space = true;
|
|
tab = true;
|
|
nbsp = true;
|
|
lead = true;
|
|
trail = true;
|
|
};
|
|
};
|
|
}
|