add firenvim

This commit is contained in:
Charlotte 🦝 Delenk 2023-04-14 14:17:54 +01:00
parent 2118a97e45
commit 5387992181
Signed by: darkkirb
GPG key ID: AB2BD8DAF2E37122

View file

@ -0,0 +1,16 @@
{
pkgs,
config,
...
}: {
output.plugins =
if config.isDesktop
then with pkgs.vimPlugins; [firenvim]
else [];
output.extraConfig =
if config.isDesktop
then ''
silent call firenvim#install(0)
''
else "";
}