mirror of
https://github.com/NotAShelf/neovim-flake.git
synced 2024-11-09 22:55:58 +01:00
feat: apply new module format to markdown plugins
This commit is contained in:
parent
067b523897
commit
4434d9e053
6 changed files with 69 additions and 42 deletions
13
modules/markdown/config.nix
Normal file
13
modules/markdown/config.nix
Normal file
|
@ -0,0 +1,13 @@
|
||||||
|
{
|
||||||
|
pkgs,
|
||||||
|
config,
|
||||||
|
lib,
|
||||||
|
...
|
||||||
|
}:
|
||||||
|
with lib; {
|
||||||
|
config = {
|
||||||
|
vim.markdown = {
|
||||||
|
enable = mkDefault false;
|
||||||
|
};
|
||||||
|
};
|
||||||
|
}
|
|
@ -6,5 +6,7 @@
|
||||||
}: {
|
}: {
|
||||||
imports = [
|
imports = [
|
||||||
./glow
|
./glow
|
||||||
|
./config.nix
|
||||||
|
./module.nix
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
|
|
|
@ -4,11 +4,17 @@
|
||||||
lib,
|
lib,
|
||||||
...
|
...
|
||||||
}:
|
}:
|
||||||
with lib; {
|
with lib; let
|
||||||
config = {
|
cfg = config.vim.markdown.glow;
|
||||||
vim.markdown = {
|
in {
|
||||||
enable = mkDefault false;
|
config = (mkIf cfg.enable) {
|
||||||
glow.enable = mkDefault false;
|
vim.startPlugins = ["glow-nvim"];
|
||||||
|
vim.globals = {
|
||||||
|
"glow_binary_path" = "${pkgs.glow}/bin";
|
||||||
};
|
};
|
||||||
|
|
||||||
|
vim.configRC.glow = nvim.dag.entryAnywhere ''
|
||||||
|
autocmd FileType markdown noremap <leader>p :Glow<CR>
|
||||||
|
'';
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,38 +1,6 @@
|
||||||
{
|
_: {
|
||||||
pkgs,
|
imports = [
|
||||||
config,
|
./glow.nix
|
||||||
lib,
|
./config.nix
|
||||||
...
|
];
|
||||||
}:
|
|
||||||
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>
|
|
||||||
'');
|
|
||||||
};
|
|
||||||
}
|
}
|
||||||
|
|
18
modules/markdown/glow/glow.nix
Normal file
18
modules/markdown/glow/glow.nix
Normal file
|
@ -0,0 +1,18 @@
|
||||||
|
{
|
||||||
|
pkgs,
|
||||||
|
config,
|
||||||
|
lib,
|
||||||
|
...
|
||||||
|
}:
|
||||||
|
with lib;
|
||||||
|
with builtins; let
|
||||||
|
cfg = config.vim.markdown;
|
||||||
|
in {
|
||||||
|
options.vim.markdown = {
|
||||||
|
glow.enable = mkOption {
|
||||||
|
type = types.bool;
|
||||||
|
default = false;
|
||||||
|
description = "Enable markdown preview in neovim with glow";
|
||||||
|
};
|
||||||
|
};
|
||||||
|
}
|
20
modules/markdown/module.nix
Normal file
20
modules/markdown/module.nix
Normal file
|
@ -0,0 +1,20 @@
|
||||||
|
{
|
||||||
|
pkgs,
|
||||||
|
config,
|
||||||
|
lib,
|
||||||
|
...
|
||||||
|
}:
|
||||||
|
with lib;
|
||||||
|
with builtins; let
|
||||||
|
cfg = config.vim.markdown;
|
||||||
|
in {
|
||||||
|
options.vim.markdown = {
|
||||||
|
enable = mkEnableOption "markdown tools and plugins";
|
||||||
|
};
|
||||||
|
|
||||||
|
config = mkIf (cfg.enable) {
|
||||||
|
/*
|
||||||
|
...
|
||||||
|
*/
|
||||||
|
};
|
||||||
|
}
|
Loading…
Reference in a new issue