macboolk doesn't like lua :c

This commit is contained in:
Iwaniuk Krzysztof 2024-05-25 00:05:51 +02:00
parent f2ba1e8549
commit 5b483a9db7
34 changed files with 279 additions and 776 deletions

View file

@ -0,0 +1,24 @@
return {
{
'nvim-treesitter/nvim-treesitter',
build = ':TSUpdate',
opts = {
ensure_installed = { 'bash', 'c', 'html', 'lua', 'luadoc', 'markdown', 'vim', 'vimdoc' },
auto_install = true,
highlight = {
enable = true,
ensure_installed = { 'bash', 'c', 'html', 'lua', 'luadoc', 'markdown', 'vim', 'vimdoc' },
additional_vim_regex_highlighting = { 'ruby' },
},
indent = {
enable = true,
disable = { 'ruby' },
},
},
config = function(_, opts)
---@diagnostic disable-next-line: missing-fields
require('nvim-treesitter.configs').setup(opts)
end,
},
}