]> git.rmz.io Git - dotfiles.git/blob - nvim/lua/plugins/nvim-treesitter.lua
nvim: get cpp lang from lazyvim
[dotfiles.git] / nvim / lua / plugins / nvim-treesitter.lua
1 return {
2 -- add more treesitter parsers
3 {
4 "nvim-treesitter/nvim-treesitter",
5 opts = {
6 -- overwrites the settings from LazyVim
7 ensure_installed = {
8 "bash",
9 "c",
10 "html",
11 "json",
12 "lua",
13 "markdown",
14 "markdown_inline",
15 "python",
16 "regex",
17 "vim",
18 "vimdoc",
19 "yaml",
20 },
21 },
22 },
23 }