File tree Expand file tree Collapse file tree 2 files changed +8
-1
lines changed Expand file tree Collapse file tree 2 files changed +8
-1
lines changed Original file line number Diff line number Diff line change @@ -12,6 +12,14 @@ This plugin pack does the following:
12
12
- Adds [ nvim-lsp-file-operations] ( https://github.com/antosha417/nvim-lsp-file-operations ) to handles file imports on rename or move within neo-tree
13
13
- Adds [ neotest-jest] ( https://github.com/nvim-neotest/neotest-jest ) to ease the test running if ` neotest ` is installed
14
14
15
+ ## How do I enable HTML and CSS support?
16
+
17
+ To enable HTML, CSS and Emmet support, you can add the ` html-css ` pack to your ` community.lua ` config:
18
+
19
+ ``` lua
20
+ { import = " astrocommunity.pack.html-css" }
21
+ ```
22
+
15
23
## How do I disable Eslint format on save?
16
24
17
25
To opt out of the Eslint format on save behaviour, you can disable the autocmd setup with the pack with this:
Original file line number Diff line number Diff line change 73
73
local conform_formatter = function (bufnr ) return has_prettier (bufnr ) and { " prettierd" } or {} end
74
74
75
75
return {
76
- { import = " astrocommunity.pack.html-css" },
77
76
{ import = " astrocommunity.lsp.nvim-lsp-file-operations" },
78
77
{
79
78
" nvim-treesitter/nvim-treesitter" ,
You can’t perform that action at this time.
0 commit comments