17 lines
613 B
Lua
17 lines
613 B
Lua
return { -- Highlight, edit, and navigate code
|
|
'nvim-treesitter/nvim-treesitter',
|
|
build = ':TSUpdate',
|
|
config = function()
|
|
-- [[ Configure Treesitter ]] See `:help nvim-treesitter`
|
|
|
|
---@diagnostic disable-next-line: missing-fields
|
|
require('nvim-treesitter.configs').setup {
|
|
ensure_installed = { 'bash', 'c', 'html', 'lua', 'markdown', 'vim', 'vimdoc', 'python', 'javascript', 'rust', 'go', 'gomod', 'gowork', 'gosum' },
|
|
-- Autoinstall languages that are not installed
|
|
auto_install = true,
|
|
highlight = { enable = true },
|
|
indent = { enable = true },
|
|
}
|
|
end,
|
|
}
|