12 lines
183 B
Nix
12 lines
183 B
Nix
{ ... }:
|
|
{
|
|
programs.nixvim = {
|
|
plugins.lean = {
|
|
enable = true;
|
|
settings = {
|
|
abbreviations.enable = false;
|
|
lsp.enable = false;
|
|
};
|
|
};
|
|
};
|
|
}
|