added zig lsp.

This commit is contained in:
Gabe Venberg 2025-04-18 15:23:51 +02:00
parent a08109dc84
commit 079ef3b1ce
5 changed files with 29 additions and 10 deletions

View file

@ -0,0 +1,10 @@
{
config,
pkgs,
lib,
...
}: {
config =
lib.mkIf (config.user.nvim.enable-lsp && config.user.nvim.enable) {
};
}