1
0
mirror of https://github.com/tiyn/dotfiles.git synced 2026-03-17 14:14:47 +01:00

NVIM: Updated Treesitter config for new API

This commit is contained in:
2026-03-17 03:22:32 +01:00
parent c3fb4c7953
commit 20980c76ca

View File

@@ -9,8 +9,9 @@ return {
-- 'p00f/nvim-ts-rainbow', -- 'p00f/nvim-ts-rainbow',
}, },
config = function() config = function()
require("nvim-treesitter.config").setup({ local treesitter = require("nvim-treesitter")
ensure_installed = { treesitter.setup()
treesitter.install({
"bash", "bash",
"css", "css",
"html", "html",
@@ -21,16 +22,20 @@ return {
"rust", "rust",
"lua", "lua",
"yaml", "yaml",
}, })
require("nvim-ts-autotag").setup({
opts = {
enable_close = true,
enable_rename = true,
}
})
-- WARN: not directly compatible anymore
-- highlight = { enable = true }, -- highlight = { enable = true },
autotag = { enable = false },
-- rainbow = { -- rainbow = {
-- enable = true, -- enable = true,
-- extended_mode = true, -- extended_mode = true,
-- max_file_lines = nil, -- max_file_lines = nil,
-- -- colors = {}, -- -- colors = {},
-- -- termcolors = {} -- -- termcolors = {}
-- }
})
end, end,
} }