mirror of
https://github.com/nix-community/nixvim.git
synced 2025-06-20 16:15:43 +02:00
plugins/lilypond-suite: init
This commit is contained in:
parent
6c4e2d9279
commit
490bb4e2bd
2 changed files with 190 additions and 0 deletions
28
plugins/by-name/lilypond-suite/default.nix
Normal file
28
plugins/by-name/lilypond-suite/default.nix
Normal file
|
@ -0,0 +1,28 @@
|
|||
{ 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"
|
||||
];
|
||||
};
|
||||
};
|
||||
};
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue