mirror of
https://github.com/nix-community/nixvim.git
synced 2025-06-21 08:35:43 +02:00
20 lines
383 B
Nix
20 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;
|
||
|
};
|
||
|
};
|
||
|
}
|