mirror of
https://github.com/nix-community/nixvim.git
synced 2025-11-16 07:22:49 +01:00
Add support for [linediff.vim](https://github.com/AndrewRadev/linediff.vim), a vim plugin to perform diffs on blocks of code. Closes #3520
16 lines
354 B
Nix
16 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";
|
|
};
|
|
}
|