mirror of
https://github.com/NotAShelf/neovim-flake.git
synced 2024-11-07 21:45:59 +01:00
fix: invalid zls package
This commit is contained in:
parent
f9b15c97cd
commit
b3b4f54c89
1 changed files with 1 additions and 2 deletions
|
@ -28,7 +28,7 @@ in {
|
||||||
package = mkOption {
|
package = mkOption {
|
||||||
description = "ZLS package";
|
description = "ZLS package";
|
||||||
type = types.package;
|
type = types.package;
|
||||||
default = pkgs.nodePackages.pyright;
|
default = pkgs.zls;
|
||||||
};
|
};
|
||||||
zigPackage = mkOption {
|
zigPackage = mkOption {
|
||||||
description = "Zig package used by ZLS";
|
description = "Zig package used by ZLS";
|
||||||
|
@ -37,7 +37,6 @@ in {
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
config = mkIf cfg.enable (mkMerge [
|
config = mkIf cfg.enable (mkMerge [
|
||||||
(mkIf cfg.treesitter.enable {
|
(mkIf cfg.treesitter.enable {
|
||||||
vim.treesitter.enable = true;
|
vim.treesitter.enable = true;
|
||||||
|
|
Loading…
Reference in a new issue