dotfiles/lib/shared/modules/neovim.nix

18 lines
287 B
Nix
Raw Normal View History

2024-03-18 20:33:28 +00:00
{ inputs }:
{ pkgs, ... }:
let
system = pkgs.system;
in
{
2024-03-18 20:33:28 +00:00
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
}