mirror of
https://github.com/nix-community/nixvim.git
synced 2025-08-16 23:41:43 +02:00
10 lines
245 B
Nix
10 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 ];
|
||
|
}
|