1
0
Fork 0
mirror of https://github.com/nix-community/nixvim.git synced 2025-11-08 19:46:06 +01:00
nixvim/plugins/by-name/visual-whitespace/default.nix
saygo-png c4b27080a6 treewide: infer packPathName menial work
Signed-off-by: saygo-png <saygo.mail@proton.me>
2025-09-27 23:49:59 +00:00

19 lines
451 B
Nix

{ lib, ... }:
lib.nixvim.plugins.mkNeovimPlugin {
name = "visual-whitespace";
package = "visual-whitespace-nvim";
description = "Display white space characters in visual mode, like VSCode's `renderWhitespace: selection`.";
maintainers = [ lib.maintainers.khaneliman ];
settingsExample = {
enabled = true;
match_types = {
space = true;
tab = true;
nbsp = true;
lead = true;
trail = true;
};
};
}