mirror of
https://github.com/nix-community/nixvim.git
synced 2025-08-03 01:25:22 +02:00
9 lines
245 B
Nix
9 lines
245 B
Nix
{ lib, ... }:
|
|
lib.nixvim.plugins.mkNeovimPlugin {
|
|
name = "lzn-auto-require";
|
|
|
|
setup = ".enable";
|
|
configLocation = lib.mkAfter "extraConfigLuaPost"; # Register after everything to catch mistates
|
|
|
|
maintainers = [ lib.maintainers.axka ];
|
|
}
|