diff --git a/init.lua b/init.lua index b23b8762b42..6454ce0fe2d 100644 --- a/init.lua +++ b/init.lua @@ -617,6 +617,7 @@ require('lazy').setup({ -- 'css-variables-language-server', -- Used for autocompletion of css variables 'css-lsp', -- CSS language server 'typescript-language-server', -- Used for Typescript code + 'astro-language-server', -- For Astro 'stylua', -- Used to format lua code 'gofumpt', 'black', -- Python stuff diff --git a/lua/custom/plugins/autotag.lua b/lua/custom/plugins/autotag.lua index 51e8387861e..f9998b2a3d4 100644 --- a/lua/custom/plugins/autotag.lua +++ b/lua/custom/plugins/autotag.lua @@ -1,6 +1,7 @@ return { 'windwp/nvim-ts-autotag', ft = { + 'astro', 'javascript', 'javascriptreact', 'typescript',