summaryrefslogblamecommitdiff
path: root/nvim/lua/plugins/treesitter.lua
blob: 07c4586b7b979c3c1cb26a66883fdf3aee4d48b1 (plain) (tree)
1
2
3
4
5
6
7
8
9
10









                                                                                               
return {
    "nvim-treesitter/nvim-treesitter",
    run = ":TSUpdate",
    config = function ()
        require("nvim-treesitter.configs").setup({
            ensure_installed = { "markdown", "markdown_inline", "r", "rnoweb", "yaml", "csv" },
            highlight = { enable = true },
        })
    end
}

Contact - Imprint