added plugin-config

This commit is contained in:
Nicole Dresselhaus
2025-05-05 12:28:48 +02:00
parent d84fcedf6b
commit 6033ab33fb
8 changed files with 500 additions and 0 deletions

View File

@ -0,0 +1,25 @@
local opts = {
ensure_installed = {
'c',
'lua',
'vim',
'bash',
'regex',
'vimdoc',
'query',
'markdown',
'markdown_inline',
},
highlight = {
enable = true
}
}
local function config()
require('nvim-treesitter.configs').setup(opts)
end
return {
'nvim-treesitter/nvim-treesitter',
config = config,
build = ':TSUpdate',
}