8 lines
135 B
Nix

{pkgs, ...}: {
extraPlugins = with pkgs.vimPlugins; [neoconf-nvim];
extraConfigLuaPre = ''
require("neoconf").setup()
'';
}