some bugfixes for the upcomming version of neovim (0.12.0)

This commit is contained in:
pika 2024-09-19 13:55:22 +02:00
parent 23a5559fc8
commit e8dddacc01
4 changed files with 14 additions and 48 deletions

View file

@ -9,33 +9,18 @@ return {
require("nvim-treesitter.configs").setup({
highlight = {
enable = true,
additional_vim_regex_highlighting = false,
},
indent = { enable = true },
autotag = { enable = true },
ensure_installed = {
"bash",
"fish",
-- "http",
-- "html",
-- "php",
-- "css",
-- "scss",
-- "fish",
"gitignore",
"git_config",
"markdown",
"markdown_inline",
-- "dockerfile",
"yaml",
-- "json",
-- "javascript",
-- "typescript",
-- "graphql",
"lua",
-- "query",
-- "c",
-- "prisma",
-- "hyprlang",
"ini",
"passwd",
"vim",
@ -50,9 +35,6 @@ return {
node_decremental = "<bs>",
},
},
-- Add these fields to address the error
sync_install = true,
auto_install = true,
})
end,
}