Files
nvim/lua/nvchad/configs/treesitter.lua
T
jotihojr 0b1f669caa Extend treesitter highlighting grammer (#2783)
- luadoc: lua type annotation highlighting
- printf: lua string.format highlighting
2024-04-11 12:02:28 +05:30

13 lines
206 B
Lua

local options = {
ensure_installed = { "lua", "luadoc", "printf", "vim", "vimdoc" },
highlight = {
enable = true,
use_languagetree = true,
},
indent = { enable = true },
}
return options