17 lines
278 B
Nix
17 lines
278 B
Nix
{...}: {
|
|
programs.nixvim = {
|
|
plugins = {
|
|
illuminate = {
|
|
enable = true;
|
|
|
|
filetypesDenylist = [
|
|
"dirvish"
|
|
"fugitive"
|
|
"neo-tree"
|
|
"TelescopePrompt"
|
|
];
|
|
largeFileCutoff = 3000;
|
|
};
|
|
};
|
|
};
|
|
}
|