Compare commits

..

2 Commits

Author SHA1 Message Date
ff0e6d6553
refactor(nvim): use own fork of nvim-ts-autotag
Some checks failed
Check Formatting of Files / Check-Formatting (push) Failing after 1m17s
2024-05-13 22:05:03 -05:00
7776463c30
fix(nvim): do not disable schema store for yamlls 2024-05-13 22:04:32 -05:00
2 changed files with 1 additions and 37 deletions

View File

@ -352,10 +352,6 @@ return {
},
},
yaml = {
schemaStore = {
enable = false,
url = "",
},
schemas = require("schemastore").yaml.schemas({
validate = { enable = true },
extra = {

View File

@ -38,41 +38,9 @@ return {
end,
},
{
"windwp/nvim-ts-autotag",
"PriceHiller/nvim-ts-autotag",
dependencies = { "nvim-treesitter/nvim-treesitter" },
event = { "BufReadPre", "BufNewFile" },
opts = {
filetypes = {
"astro",
"glimmer",
"handlebars",
"html",
"javascript",
"jsx",
"php",
"rescript",
"svelte",
"tsx",
"typescript",
"vue",
"xml",
},
},
ft = {
"astro",
"glimmer",
"handlebars",
"html",
"javascript",
"jsx",
"php",
"rescript",
"svelte",
"tsx",
"typescript",
"vue",
"xml",
},
},
{
url = "https://gitlab.com/HiPhish/rainbow-delimiters.nvim",