37 lines
1.2 KiB
Lua
37 lines
1.2 KiB
Lua
return {
|
|
'nvim-treesitter/nvim-treesitter',
|
|
build = ':TSUpdate',
|
|
main = 'nvim-treesitter.configs', -- Sets main module to use for opts
|
|
-- [[ Configure Treesitter ]] See `:help nvim-treesitter`
|
|
opts = {
|
|
ensure_installed = { 'blade', 'bash', 'c', 'diff', 'html', 'php', 'lua', 'luadoc', 'markdown', 'markdown_inline', 'query', 'vim', 'vimdoc' },
|
|
-- Autoinstall languages that are not installed
|
|
auto_install = true,
|
|
highlight = {
|
|
enable = true,
|
|
-- Some languages depend on vim's regex highlighting system (such as Ruby) for indent rules.
|
|
-- If you are experiencing weird indenting issues, add the language to
|
|
-- the list of additional_vim_regex_highlighting and disabled languages for indent.
|
|
additional_vim_regex_highlighting = { 'ruby' },
|
|
},
|
|
indent = { enable = true, disable = { 'ruby' } },
|
|
},
|
|
config = function(_, opts)
|
|
require('nvim-treesitter.configs').setup(opts)
|
|
|
|
local parser_config = require('nvim-treesitter.parsers').get_parser_configs()
|
|
|
|
parser_config.blade = {
|
|
|
|
install_info = {
|
|
url = 'https://github.com/EmranMR/tree-sitter-blade',
|
|
highlight = true,
|
|
files = { 'src/parser.c' },
|
|
branch = 'main',
|
|
},
|
|
|
|
filetype = 'blade',
|
|
}
|
|
end,
|
|
}
|