nix-community.nixvim/plugins/by-name/visual-whitespace/default.nix

21 lines
494 B
Nix
Raw Normal View History

2025-05-07 22:45:09 -05:00
{ lib, ... }:
lib.nixvim.plugins.mkNeovimPlugin {
name = "visual-whitespace";
packPathName = "visual-whitespace.nvim";
package = "visual-whitespace-nvim";
2025-06-18 02:42:47 +03:00
description = "Display white space characters in visual mode, like VSCode's `renderWhitespace: selection`.";
2025-05-07 22:45:09 -05:00
maintainers = [ lib.maintainers.khaneliman ];
settingsExample = {
enabled = true;
match_types = {
space = true;
tab = true;
nbsp = true;
lead = true;
trail = true;
};
};
}