config.nix/home/apps/development/neovim.nix
2026-05-04 08:12:55 +02:00

23 lines
250 B
Nix

{
lib,
config,
osConfig,
inputs,
pkgs,
...
}:
{
config = {
programs = {
neovim = {
plugins =
with pkgs.vimPlugins;
[
telescope-nvim
]
++ [ ];
};
};
};
}