From e7f411ac8ffb5de2138859dbea569b3ea689cce7 Mon Sep 17 00:00:00 2001 From: Michael Mandl Date: Thu, 24 Feb 2022 07:54:00 +0100 Subject: [PATCH] feat: add more treesitter languages --- lua/plugins/treesitter.lua | 31 +++++++------------------------ 1 file changed, 7 insertions(+), 24 deletions(-) diff --git a/lua/plugins/treesitter.lua b/lua/plugins/treesitter.lua index 9902a46..ddcbd67 100644 --- a/lua/plugins/treesitter.lua +++ b/lua/plugins/treesitter.lua @@ -1,26 +1,9 @@ require('nvim-treesitter.configs').setup({ - highlight = { - enable = true, - additional_vim_regex_highlighting = false, - }, - indent = { - enable = true, - }, - ensure_installed = { - "bash", - "c", - "cpp", - "html", - "javascript", - "json", - "lua", - "markdown", - "python", - "rust", - "svelte", - "typescript", - "vim", - "vue", - "yaml", - }, + highlight = {enable = true, additional_vim_regex_highlighting = false}, + indent = {enable = true}, + ensure_installed = { + "bash", "c", "cpp", "css", "dockerfile", "html", "javascript", "json", + "latex", "lua", "markdown", "python", "rust", "svelte", "toml", "tsx", + "typescript", "vim", "vue", "yaml" + } })