mirror of
https://github.com/nix-community/nixvim.git
synced 2025-06-21 00:25:42 +02:00
18 lines
250 B
Nix
18 lines
250 B
Nix
|
{
|
||
|
empty = {
|
||
|
plugins.nerdy.enable = true;
|
||
|
};
|
||
|
|
||
|
with-telescope = {
|
||
|
plugins = {
|
||
|
telescope.enable = true;
|
||
|
web-devicons.enable = true;
|
||
|
|
||
|
nerdy = {
|
||
|
enable = true;
|
||
|
enableTelescope = true;
|
||
|
};
|
||
|
};
|
||
|
};
|
||
|
}
|