dotfiles/lib/shared/modules/neovim.nix

15 lines
281 B
Nix
Raw Normal View History

2024-02-13 21:33:32 +00:00
{inputs}: {pkgs, ...}: let
system = pkgs.system;
2024-02-13 21:33:32 +00:00
in {
programs.neovim = inputs.opdavies-nvim.lib.mkHomeManager {inherit system;};
home.file.".markdownlint.yaml".text = ''
default: true
line-length: false
no-duplicate-heading:
siblings_only: true
'';
2023-11-06 23:48:09 +00:00
}