mirror of
https://github.com/nix-community/nixvim.git
synced 2025-06-24 17:58:38 +02:00
plugins/visual-whitespace: init module
This commit is contained in:
parent
e656464da4
commit
924e9dd29b
2 changed files with 60 additions and 0 deletions
19
plugins/by-name/visual-whitespace/default.nix
Normal file
19
plugins/by-name/visual-whitespace/default.nix
Normal file
|
@ -0,0 +1,19 @@
|
|||
{ 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;
|
||||
};
|
||||
};
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue