summaryrefslogtreecommitdiff
path: root/.config/nvim/lua/custom/plugins/treesitter.lua
blob: 91e3f36f0f03e10995d692e90110645ae2f9a2c6 (plain)
1
2
3
4
5
6
7
require('nvim-treesitter').setup {
    config = {
        ensure_installed = { 'cpp', 'html', 'htmldjango' },
        automatic_installation = true,
    }
}