mirror of
https://github.com/nix-community/nixvim.git
synced 2025-07-08 00:04:33 +02:00
17 lines
354 B
Nix
17 lines
354 B
Nix
|
{ lib, ... }:
|
||
|
lib.nixvim.plugins.mkVimPlugin {
|
||
|
name = "linediff";
|
||
|
packPathName = "linediff.vim";
|
||
|
package = "linediff-vim";
|
||
|
|
||
|
globalPrefix = "linediff_";
|
||
|
|
||
|
maintainers = [ lib.maintainers.GaetanLepage ];
|
||
|
|
||
|
settingsExample = {
|
||
|
modify_statusline = 0;
|
||
|
first_buffer_command = "topleft new";
|
||
|
second_buffer_command = "vertical new";
|
||
|
};
|
||
|
}
|