Skip to content

Commit

Permalink
fix(astro): add scss treesitter parser
Browse files Browse the repository at this point in the history
  • Loading branch information
mehalter committed Oct 16, 2024
1 parent 7518c1c commit a2b0133
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion lua/astrocommunity/pack/astro/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,6 @@

This plugin pack does the following:

- Adds `astro` Treesitter parser
- Adds `astro` and `scss` Treesitter parsers
- Adds `astro` language server
- Adds `js-debug-adapter` for debugging
2 changes: 1 addition & 1 deletion lua/astrocommunity/pack/astro/init.lua
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ return {
opts = function(_, opts)
-- Ensure that opts.ensure_installed exists and is a table or string "all".
if opts.ensure_installed ~= "all" then
opts.ensure_installed = require("astrocore").list_insert_unique(opts.ensure_installed, { "astro" })
opts.ensure_installed = require("astrocore").list_insert_unique(opts.ensure_installed, { "astro", "scss" })
end
end,
},
Expand Down

0 comments on commit a2b0133

Please sign in to comment.