feat: apply new module format to markdown plugins

This commit is contained in:
NotAShelf 2023-02-27 22:26:00 +03:00
commit 4434d9e053
No known key found for this signature in database
GPG key ID: 5B5C8895F28445F1
6 changed files with 69 additions and 42 deletions

View file

@ -1,38 +1,6 @@
{
pkgs,
config,
lib,
...
}:
with lib;
with builtins; let
cfg = config.vim.markdown;
in {
options.vim.markdown = {
enable = mkEnableOption "markdown tools and plugins";
glow.enable = mkOption {
type = types.bool;
default = true;
description = "Enable markdown preview in neovim with glow";
};
};
config = mkIf (cfg.enable) {
vim.startPlugins = [
(
if cfg.glow.enable
then "glow-nvim"
else null
)
];
vim.globals = mkIf (cfg.glow.enable) {
"glow_binary_path" = "${pkgs.glow}/bin";
};
vim.configRC.glow = mkIf (cfg.glow.enable) (nvim.dag.entryAnywhere ''
autocmd FileType markdown noremap <leader>p :Glow<CR>
'');
};
_: {
imports = [
./glow.nix
./config.nix
];
}