10 lines
131 B
Nix
10 lines
131 B
Nix
{ neoformat, ... }:
|
|
|
|
let
|
|
inherit (builtins) readFile;
|
|
in
|
|
{
|
|
luaConfig = readFile ./neoformat.lua;
|
|
|
|
plugins = [ neoformat ];
|
|
}
|