aboutsummaryrefslogtreecommitdiff
path: root/nvim/lua/plugins/treesitter.lua
diff options
context:
space:
mode:
authorThomas Schmucker <ts@its1.de>2026-01-25 22:33:33 +0100
committerThomas Schmucker <ts@its1.de>2026-01-25 22:33:33 +0100
commitfb1fcd7bd44682fb0e5b76a660954eb7a5b22597 (patch)
treea8bde5713b2a95d762f3c5566277ddfaed077682 /nvim/lua/plugins/treesitter.lua
parent23ff2cff5b7f598fd28026aa089d7304e9f301f4 (diff)
downloaddotfiles-fb1fcd7bd44682fb0e5b76a660954eb7a5b22597.tar.gz
dotfiles-fb1fcd7bd44682fb0e5b76a660954eb7a5b22597.tar.bz2
dotfiles-fb1fcd7bd44682fb0e5b76a660954eb7a5b22597.zip
Neovim: Treesitter für html, markdown, yaml und zsh hinzugefügt
Diffstat (limited to 'nvim/lua/plugins/treesitter.lua')
-rw-r--r--nvim/lua/plugins/treesitter.lua4
1 files changed, 4 insertions, 0 deletions
diff --git a/nvim/lua/plugins/treesitter.lua b/nvim/lua/plugins/treesitter.lua
index e0e6beb..7c15036 100644
--- a/nvim/lua/plugins/treesitter.lua
+++ b/nvim/lua/plugins/treesitter.lua
@@ -23,12 +23,16 @@ return {
23 "html", 23 "html",
24 "javascript", 24 "javascript",
25 "lua", 25 "lua",
26 "markdown",
27 "markdown_inline",
26 "prisma", 28 "prisma",
27 "python", 29 "python",
28 "typescript", 30 "typescript",
29 "vim", 31 "vim",
30 "vim", 32 "vim",
31 "vimdoc", 33 "vimdoc",
34 "yaml",
35 "zsh",
32 }) 36 })
33 end, 37 end,
34 }, 38 },