diff options
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() |
