about summary refs log tree commit diff stats
path: root/home-manager/soispha/config/neovim/nixvim/plugins/nvim-lint/default.nix
blob: c55efacc3dd16dda8f04344ba9cf0c1cae583814 (plain) (blame)
1
2
3
4
5
6
7
8
{lib, ...}: {
  programs.nixvim = {
    # TODO package nvim-lint though a module
    extraConfigLuaPost = ''
      ${lib.strings.fileContents ./lua/nvim-lint.lua}
    '';
  };
}