mirror of
https://github.com/nix-community/nixvim.git
synced 2025-11-08 19:46:06 +01:00
16 lines
295 B
Nix
16 lines
295 B
Nix
{ lib, ... }:
|
|
lib.nixvim.plugins.mkNeovimPlugin {
|
|
name = "unified";
|
|
package = "unified-nvim";
|
|
|
|
maintainers = [ lib.maintainers.khaneliman ];
|
|
|
|
settingsExample = {
|
|
line_symbols = {
|
|
add = "";
|
|
delete = "";
|
|
change = "";
|
|
};
|
|
auto_refresh = false;
|
|
};
|
|
}
|