mirror of
https://github.com/nix-community/nixvim.git
synced 2025-06-20 16:15:43 +02:00
28 lines
602 B
Nix
28 lines
602 B
Nix
{ lib, ... }:
|
|
lib.nixvim.plugins.mkNeovimPlugin {
|
|
name = "lilypond-suite";
|
|
packPathName = "nvim-lilypond-suite";
|
|
package = "nvim-lilypond-suite";
|
|
moduleName = "nvls";
|
|
|
|
maintainers = [ lib.maintainers.GaetanLepage ];
|
|
|
|
settingsExample = {
|
|
lilypond = {
|
|
mappings = {
|
|
player = "<F3>";
|
|
compile = "<F5>";
|
|
open_pdf = "<F6>";
|
|
switch_buffers = "<F2>";
|
|
insert_version = "<F4>";
|
|
};
|
|
options = {
|
|
pitches_language = "default";
|
|
output = "pdf";
|
|
include_dir = [
|
|
"./openlilylib"
|
|
];
|
|
};
|
|
};
|
|
};
|
|
}
|