diff options
| author | Thomas Schmucker <ts@its1.de> | 2026-01-25 22:33:33 +0100 |
|---|---|---|
| committer | Thomas Schmucker <ts@its1.de> | 2026-01-25 22:33:33 +0100 |
| commit | fb1fcd7bd44682fb0e5b76a660954eb7a5b22597 (patch) | |
| tree | a8bde5713b2a95d762f3c5566277ddfaed077682 /nvim/lua/config/autocmds.lua | |
| parent | 23ff2cff5b7f598fd28026aa089d7304e9f301f4 (diff) | |
| download | dotfiles-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/config/autocmds.lua')
| -rw-r--r-- | nvim/lua/config/autocmds.lua | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/nvim/lua/config/autocmds.lua b/nvim/lua/config/autocmds.lua index 09aea1e..1452546 100644 --- a/nvim/lua/config/autocmds.lua +++ b/nvim/lua/config/autocmds.lua | |||
| @@ -3,10 +3,14 @@ vim.api.nvim_create_autocmd("FileType", { | |||
| 3 | pattern = { | 3 | pattern = { |
| 4 | "c", | 4 | "c", |
| 5 | "cpp", | 5 | "cpp", |
| 6 | "html", | ||
| 6 | "lua", | 7 | "lua", |
| 8 | "markdown", | ||
| 7 | "prisma", | 9 | "prisma", |
| 8 | "python", | 10 | "python", |
| 9 | "typescript", | 11 | "typescript", |
| 12 | "yaml", | ||
| 13 | "zsh", | ||
| 10 | }, | 14 | }, |
| 11 | callback = function() | 15 | callback = function() |
| 12 | vim.treesitter.start() | 16 | vim.treesitter.start() |
