aboutsummaryrefslogtreecommitdiff
path: root/env/.config/nvim/after/plugin/treesitter.lua
blob: 60eb1529a00b3f2f9917c51d7bb283eeafeb432e (plain)
1
2
3
4
5
6
7
local ok, treesitter = pcall(require, 'nvim-treesitter.configs')
if ok then
    treesitter.setup {
        ensure_installed = { "c", "lua", "rust", "css", "html", "bash", "markdown", "markdown_inline" },
        highlight = { enable = true, },
    }
end