debian-dots

dotfiles (does the obvious)
git clone [email protected]:dracuxan/debian-dots.git
Log | Files | Refs | README | LICENSE

treesitter.lua (501B)


      1 require("nvim-treesitter.configs").setup({
      2 	ensure_installed = {
      3 		"lua",
      4 		"python",
      5 		"javascript",
      6 		"typescript",
      7 		"vimdoc",
      8 		"vim",
      9 		"regex",
     10 		"terraform",
     11 		"sql",
     12 		"dockerfile",
     13 		"toml",
     14 		"json",
     15 		"java",
     16 		"groovy",
     17 		"go",
     18 		"gitignore",
     19 		"graphql",
     20 		"yaml",
     21 		"make",
     22 		"cmake",
     23 		"markdown",
     24 		"markdown_inline",
     25 		"bash",
     26 		"tsx",
     27 		"css",
     28 		"html",
     29 		"rust",
     30 		"zig",
     31 	},
     32 	-- Autoinstall languages that are not installed
     33 	auto_install = true,
     34 	highlight = { enable = true },
     35 })