aboutsummaryrefslogtreecommitdiffstats
path: root/nvim/lua/plugins/treesitter.lua
blob: 49ea25759c652ce67f8714a5fcb445c30bebf2e0 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
return {
    'nvim-treesitter/nvim-treesitter',
    build = ':TSUpdate',
    opts = {
        ensure_installed = { "help", "lua", "python", "java", "javascript", "typescript", "c" },
        auto_install = true,
        highlight = {
            enable = true,
            additional_vim_regex_highlighting = false
        }
    }
}