mirror of
https://github.com/NotAShelf/nvf.git
synced 2025-10-12 11:49:34 +00:00
Merge branch 'main' into main
This commit is contained in:
commit
2c9a8e2857
5 changed files with 103 additions and 24 deletions
|
@ -60,7 +60,17 @@
|
|||
'';
|
||||
};
|
||||
|
||||
nixd = {
|
||||
nixd = let
|
||||
settings.nixd = {
|
||||
inherit (cfg.lsp) options;
|
||||
formatting.command =
|
||||
if !cfg.format.enable
|
||||
then null
|
||||
else if cfg.format.type == "alejandra"
|
||||
then ["${cfg.format.package}/bin/alejandra" "--quiet"]
|
||||
else ["${cfg.format.package}/bin/nixfmt"];
|
||||
};
|
||||
in {
|
||||
package = pkgs.nixd;
|
||||
internalFormatter = true;
|
||||
lspConfig = ''
|
||||
|
@ -72,25 +82,7 @@
|
|||
else noFormat
|
||||
},
|
||||
cmd = ${packageToCmd cfg.lsp.package "nixd"},
|
||||
options = ${toLuaObject cfg.lsp.options},
|
||||
${optionalString cfg.format.enable ''
|
||||
settings = {
|
||||
nixd = {
|
||||
${optionalString (cfg.format.type == "alejandra")
|
||||
''
|
||||
formatting = {
|
||||
command = {"${cfg.format.package}/bin/alejandra", "--quiet"},
|
||||
},
|
||||
''}
|
||||
${optionalString (cfg.format.type == "nixfmt")
|
||||
''
|
||||
formatting = {
|
||||
command = {"${cfg.format.package}/bin/nixfmt"},
|
||||
},
|
||||
''}
|
||||
},
|
||||
},
|
||||
''}
|
||||
settings = ${toLuaObject settings},
|
||||
}
|
||||
'';
|
||||
};
|
||||
|
|
|
@ -7,9 +7,10 @@
|
|||
inherit (lib.options) mkEnableOption mkOption;
|
||||
inherit (lib.modules) mkIf mkMerge;
|
||||
inherit (lib.lists) isList;
|
||||
inherit (lib.types) nullOr enum either attrsOf listOf package str;
|
||||
inherit (lib.types) nullOr enum either attrsOf listOf package str bool int;
|
||||
inherit (lib.attrsets) attrNames;
|
||||
inherit (lib.meta) getExe;
|
||||
inherit (lib.nvim.binds) mkMappingOption mkKeymap;
|
||||
inherit (lib.nvim.lua) expToLua toLuaObject;
|
||||
inherit (lib.nvim.types) mkGrammarOption mkPluginSetupOption;
|
||||
inherit (lib.nvim.dag) entryAnywhere;
|
||||
|
@ -150,6 +151,57 @@ in {
|
|||
};
|
||||
};
|
||||
};
|
||||
typst-concealer = {
|
||||
enable = mkEnableOption ''
|
||||
[typst-concealer]: https://github.com/PartyWumpus/typst-concealer
|
||||
|
||||
Inline typst preview for Neovim via [typst-concealer]
|
||||
'';
|
||||
|
||||
mappings = {
|
||||
toggleConcealing = mkMappingOption "Enable typst-concealer in buffer" "<leader>TT";
|
||||
};
|
||||
|
||||
setupOpts = mkPluginSetupOption "typst-concealer" {
|
||||
do_diagnostics = mkOption {
|
||||
type = nullOr bool;
|
||||
default = !cfg.lsp.enable;
|
||||
description = "Should typst-concealer provide diagnostics on error?";
|
||||
};
|
||||
color = mkOption {
|
||||
type = nullOr str;
|
||||
default = null;
|
||||
example = "rgb(\"#f012be\")";
|
||||
description = "What color should typst-concealer render text/stroke with? (only applies when styling_type is 'colorscheme')";
|
||||
};
|
||||
enabled_by_default = mkOption {
|
||||
type = nullOr bool;
|
||||
default = null;
|
||||
description = "Should typst-concealer conceal newly opened buffers by default?";
|
||||
};
|
||||
styling_type = mkOption {
|
||||
type = nullOr (enum ["simple" "none" "colorscheme"]);
|
||||
default = null;
|
||||
description = "What kind of styling should typst-concealer apply to your typst?";
|
||||
};
|
||||
ppi = mkOption {
|
||||
type = nullOr int;
|
||||
default = null;
|
||||
description = "What PPI should typst render at. Plugin default is 300, typst's normal default is 144.";
|
||||
};
|
||||
typst_location = mkOption {
|
||||
type = str;
|
||||
default = getExe pkgs.typst;
|
||||
description = "Where should typst-concealer look for your typst binary?";
|
||||
example = ''lib.getExe pkgs.typst'';
|
||||
};
|
||||
conceal_in_normal = mkOption {
|
||||
type = nullOr bool;
|
||||
default = null;
|
||||
description = "Should typst-concealer still conceal when the normal mode cursor goes over a line.";
|
||||
};
|
||||
};
|
||||
};
|
||||
};
|
||||
};
|
||||
config = mkIf cfg.enable (mkMerge [
|
||||
|
@ -180,5 +232,18 @@ in {
|
|||
require("typst-preview").setup(${toLuaObject cfg.extensions.typst-preview-nvim.setupOpts})
|
||||
'';
|
||||
})
|
||||
|
||||
(mkIf cfg.extensions.typst-concealer.enable {
|
||||
vim.lazy.plugins.typst-concealer = {
|
||||
event = "BufRead *.typ";
|
||||
package = "typst-concealer";
|
||||
setupModule = "typst-concealer";
|
||||
setupOpts = cfg.extensions.typst-concealer.setupOpts;
|
||||
|
||||
keys = [
|
||||
(mkKeymap "n" cfg.extensions.typst-concealer.mappings.toggleConcealing "<cmd>lua require('typst-concealer').toggle_buf()<CR>" {desc = "Toggle typst-concealer in buffer";})
|
||||
];
|
||||
};
|
||||
})
|
||||
]);
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue