summaryrefslogtreecommitdiff
path: root/lua/plugins/nvim-treesitter.lua
diff options
context:
space:
mode:
Diffstat (limited to 'lua/plugins/nvim-treesitter.lua')
-rw-r--r--lua/plugins/nvim-treesitter.lua15
1 files changed, 14 insertions, 1 deletions
diff --git a/lua/plugins/nvim-treesitter.lua b/lua/plugins/nvim-treesitter.lua
index 7bba53a..5428bcc 100644
--- a/lua/plugins/nvim-treesitter.lua
+++ b/lua/plugins/nvim-treesitter.lua
@@ -4,7 +4,20 @@ return {
build = ":TSUpdate",
config = function()
require("nvim-treesitter.configs").setup({
- ensure_installed = { "vim", "vimdoc", "lua", "python", "rust" },
+ ensure_installed = {
+ "vim",
+ "vimdoc",
+ "lua",
+ "python",
+ "rust",
+ "typst",
+ "ledger",
+ "markdown",
+ "html",
+ "css",
+ "json",
+ "nginx",
+ },
sync_install = false,
highlight = { enable = true },
indent = { enable = true },