Skip to content

Commit 53251e1

Browse files
authored
refactor(typescript)!: remove html-css pack import (#1472)
1 parent 4b2adda commit 53251e1

File tree

2 files changed

+8
-1
lines changed

2 files changed

+8
-1
lines changed

lua/astrocommunity/pack/typescript/README.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,14 @@ This plugin pack does the following:
1212
- Adds [nvim-lsp-file-operations](https://github.com/antosha417/nvim-lsp-file-operations) to handles file imports on rename or move within neo-tree
1313
- Adds [neotest-jest](https://github.com/nvim-neotest/neotest-jest) to ease the test running if `neotest` is installed
1414

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+
1523
## How do I disable Eslint format on save?
1624

1725
To opt out of the Eslint format on save behaviour, you can disable the autocmd setup with the pack with this:

lua/astrocommunity/pack/typescript/init.lua

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,6 @@ end
7373
local conform_formatter = function(bufnr) return has_prettier(bufnr) and { "prettierd" } or {} end
7474

7575
return {
76-
{ import = "astrocommunity.pack.html-css" },
7776
{ import = "astrocommunity.lsp.nvim-lsp-file-operations" },
7877
{
7978
"nvim-treesitter/nvim-treesitter",

0 commit comments

Comments
 (0)