mirror of
https://github.com/nix-community/nixvim.git
synced 2025-11-16 15:32:48 +01:00
15 lines
321 B
Nix
15 lines
321 B
Nix
{ lib, ... }:
|
|
lib.nixvim.plugins.mkVimPlugin {
|
|
name = "linediff";
|
|
package = "linediff-vim";
|
|
|
|
globalPrefix = "linediff_";
|
|
|
|
maintainers = [ lib.maintainers.GaetanLepage ];
|
|
|
|
settingsExample = {
|
|
modify_statusline = 0;
|
|
first_buffer_command = "topleft new";
|
|
second_buffer_command = "vertical new";
|
|
};
|
|
}
|