lilypond-suite

URL: https://github.com/martineausimon/nvim-lilypond-suite/

Maintainers: Gaetan Lepage

plugins.lilypond-suite.enable

Whether to enable nvim-lilypond-suite.

Type: boolean

Default: false

Example: true

Declared by:

plugins.lilypond-suite.package

The nvim-lilypond-suite package to use.

Type: package

Default: pkgs.vimPlugins.nvim-lilypond-suite

Declared by:

plugins.lilypond-suite.autoLoad

Whether to automatically load nvim-lilypond-suite when neovim starts.

Type: boolean

Default: false when lazy-loading is enabled.

Example: false

Declared by:

plugins.lilypond-suite.settings

Options provided to the require('nvls').setup function.

Type: attribute set of anything

Default: { }

Example:

{
  lilypond = {
    mappings = {
      compile = "<F5>";
      insert_version = "<F4>";
      open_pdf = "<F6>";
      player = "<F3>";
      switch_buffers = "<F2>";
    };
    options = {
      include_dir = [
        "./openlilylib"
      ];
      output = "pdf";
      pitches_language = "default";
    };
  };
}

Declared by: