We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
scss
1 parent 7518c1c commit a2b0133Copy full SHA for a2b0133
lua/astrocommunity/pack/astro/README.md
@@ -2,6 +2,6 @@
2
3
This plugin pack does the following:
4
5
-- Adds `astro` Treesitter parser
+- Adds `astro` and `scss` Treesitter parsers
6
- Adds `astro` language server
7
- Adds `js-debug-adapter` for debugging
lua/astrocommunity/pack/astro/init.lua
@@ -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
8
- 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" })
9
end
10
end,
11
},
0 commit comments