- added nlua (lua neovim) debug configuration

This commit is contained in:
Erik Mertens
2025-06-26 11:28:50 +02:00
parent f9c8a41cc6
commit bc0e4a1650
8 changed files with 281 additions and 81 deletions

View File

@ -1,12 +1,15 @@
return {
"nvim-treesitter/nvim-treesitter",
branch = 'master',
branch = "master",
lazy = false,
build = ":TSUpdate",
event = { "BufRead" },
opts = { -- Das Plugin bietet noch diverse weitere Optionen.
indent = { enable = true }, -- Automatische Einrückungen mit Tree-sitter
opts = { -- Das Plugin bietet noch diverse weitere Optionen.
ensure_installed = { 'bash', 'c', 'diff', 'html', 'lua', 'luadoc',
'markdown', 'markdown_inline', 'query', 'vim', 'vimdoc', "rust", "vue", "typescript", "css"
},
indent = { enable = true }, -- Automatische Einrückungen mit Tree-sitter
highlight = { enable = true }, -- Das Syntax-Highlighting einschalten
auto_install = true, -- Highlighting-Daten automatisch installieren
auto_install = true, -- Highlighting-Daten automatisch installieren
}
}