plugins/languages/treesitter: add pkgs.gcc in extraPackages (#176)

This commit is contained in:
Gaétan Lepage 2023-02-21 05:13:38 +01:00 committed by GitHub
parent baf702c03d
commit 7ee4ec70a4
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -152,7 +152,7 @@ in {
if cfg.nixGrammars if cfg.nixGrammars
then [(cfg.package.withPlugins (_: cfg.grammarPackages))] then [(cfg.package.withPlugins (_: cfg.grammarPackages))]
else [cfg.package]; else [cfg.package];
extraPackages = [pkgs.tree-sitter pkgs.nodejs]; extraPackages = [pkgs.tree-sitter pkgs.nodejs pkgs.gcc];
options = mkIf cfg.folding { options = mkIf cfg.folding {
foldmethod = "expr"; foldmethod = "expr";