aboutsummaryrefslogtreecommitdiff
path: root/store/config/nvim/lua/setup/plugins/tree-sitter.lua
blob: 043f425508e18d3808f369d605047762f2c8a5d2 (plain)
1
2
3
4
5
6
7
8
9
10
11
local function setup()
    require'nvim-treesitter.configs'.setup {
        highlight = { enable = true },
        incremental_selection = { enable = true },
        textobjects = { enable = true },
    }
end

return {
    setup = setup
}