1
0
mirror of https://github.com/tiyn/dotfiles.git synced 2025-10-12 12:31:15 +02:00

nvim: fixed and replaced deprecated parts

This commit is contained in:
tiyn
2025-03-29 06:31:16 +01:00
parent b74a23af1d
commit e8901032db
8 changed files with 55 additions and 86 deletions

View File

@@ -7,7 +7,7 @@ return {
-- automatically close html-tags
'windwp/nvim-ts-autotag',
-- color brackets
'p00f/nvim-ts-rainbow',
-- 'p00f/nvim-ts-rainbow',
},
config = function()
require("nvim-treesitter.configs").setup({
@@ -23,13 +23,13 @@ return {
},
highlight = { enable = true },
autotag = { enable = false },
rainbow = {
enable = true,
extended_mode = true,
max_file_lines = nil,
-- colors = {},
-- termcolors = {}
}
-- rainbow = {
-- enable = true,
-- extended_mode = true,
-- max_file_lines = nil,
-- -- colors = {},
-- -- termcolors = {}
-- }
})
end
}