Skip to content

Commit a2b0133

Browse files
committed
fix(astro): add scss treesitter parser
1 parent 7518c1c commit a2b0133

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

lua/astrocommunity/pack/astro/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,6 @@
22

33
This plugin pack does the following:
44

5-
- Adds `astro` Treesitter parser
5+
- Adds `astro` and `scss` Treesitter parsers
66
- Adds `astro` language server
77
- Adds `js-debug-adapter` for debugging

lua/astrocommunity/pack/astro/init.lua

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ return {
55
opts = function(_, opts)
66
-- Ensure that opts.ensure_installed exists and is a table or string "all".
77
if opts.ensure_installed ~= "all" then
8-
opts.ensure_installed = require("astrocore").list_insert_unique(opts.ensure_installed, { "astro" })
8+
opts.ensure_installed = require("astrocore").list_insert_unique(opts.ensure_installed, { "astro", "scss" })
99
end
1010
end,
1111
},

0 commit comments

Comments
 (0)