plugins/typst-vim: switch to mkVimPlugin

This commit is contained in:
Gaetan Lepage 2024-02-13 16:56:32 +01:00 committed by Gaétan Lepage
parent f744a7f8a4
commit 66c019d638
2 changed files with 80 additions and 86 deletions

View file

@ -5,32 +5,28 @@
pkgs,
...
}:
with lib; let
cfg = config.plugins.typst-vim;
in {
options.plugins.typst-vim = {
enable = mkEnableOption "typst.vim";
with lib;
helpers.vim-plugin.mkVimPlugin config {
name = "typst-vim";
originalName = "typst.vim";
defaultPackage = pkgs.vimPlugins.typst-vim;
globalPrefix = "typst_";
package = helpers.mkPackageOption "typst-vim" pkgs.vimPlugins.typst-vim;
# Add the typst compiler to nixvim packages
extraPackages = [pkgs.typst];
cmd = helpers.defaultNullOpts.mkStr "typst" ''
Specifies the location of the Typst executable.
'';
maintainers = [maintainers.GaetanLepage];
pdfViewer = helpers.mkNullOrOption types.str ''
Specifies pdf viewer that `typst watch --open` will use.
'';
concealMath = helpers.defaultNullOpts.mkBool false ''
Enable concealment for math symbols in math mode (i.e. replaces symbols with their actual
unicode character).
Warning: this can affect performance
'';
autoCloseToc = helpers.defaultNullOpts.mkBool false ''
Specifies whether TOC will be automatically closed after using it.
'';
# TODO introduced 2024-02-20: remove 2024-04-20
deprecateExtraConfig = true;
optionsRenamedToSettings = [
"cmd"
"pdfViewer"
"concealMath"
"autoCloseToc"
];
extraOptions = {
keymaps = {
silent = mkOption {
type = types.bool;
@ -42,40 +38,9 @@ in {
helpers.mkNullOrOption types.str
"Keymap to preview the document and recompile on change.";
};
extraConfig = mkOption {
type = types.attrs;
default = {};
description = ''
The configuration options for typst-vim without the 'typst_' prefix.
Example: To set 'typst_foobar' to 1, write
extraConfig = {
foobar = true;
};
'';
};
};
config = mkIf cfg.enable {
extraPlugins = [cfg.package];
# Add the typst compiler to nixvim packages
extraPackages = with pkgs; [typst];
globals =
mapAttrs'
(name: nameValuePair ("typst_" + name))
(
with cfg;
{
inherit cmd;
pdf_viewer = pdfViewer;
conceal_math = concealMath;
auto_close_toc = autoCloseToc;
}
// extraConfig
);
extraConfig = cfg: {
keymaps = with cfg.keymaps;
helpers.keymaps.mkKeymaps
{
@ -92,4 +57,30 @@ in {
}
);
};
}
settingsOptions = {
cmd = helpers.defaultNullOpts.mkStr "typst" ''
Specifies the location of the Typst executable.
'';
pdf_viewer = helpers.mkNullOrOption types.str ''
Specifies pdf viewer that `typst watch --open` will use.
'';
conceal_math = helpers.defaultNullOpts.mkBool false ''
Enable concealment for math symbols in math mode (i.e. replaces symbols with their actual
unicode character).
Warning: this can affect performance
'';
auto_close_toc = helpers.defaultNullOpts.mkBool false ''
Specifies whether TOC will be automatically closed after using it.
'';
};
settingsExample = {
cmd = "typst";
conceal_math = true;
auto_close_toc = true;
};
}

View file

@ -7,10 +7,13 @@
plugins.typst-vim = {
enable = true;
settings = {
cmd = "typst";
pdfViewer = "zathura";
concealMath = false;
autoCloseToc = false;
pdf_viewer = "zathura";
conceal_math = false;
auto_close_toc = false;
};
keymaps = {
silent = true;
watch = "<leader>w";