dotfiles/system/shared/modules/neovim.nix

18 lines
288 B
Nix
Raw Normal View History

{ inputs }: { pkgs, ... }:
2023-11-06 23:48:09 +00:00
let
system = pkgs.system;
2023-11-06 23:48:09 +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
}