dotfiles/home/.config/nvim/lua/plugins/treesitter.lua

38 lines
616 B
Lua
Raw Normal View History

return function()
require("nvim-treesitter.configs").setup({
ensure_installed = {
"bash",
"c",
"css",
"dockerfile",
"html",
"http",
"java",
"json",
"json5",
"latex",
"lua",
"make",
"markdown",
"php",
"python",
"regex",
"rasi",
"rst",
"scss",
"toml",
"tsx",
"typescript",
"javascript",
"yaml",
},
highlight = { enable = true },
indent = { enable = true },
incremental_selection = { enable = true },
context_commentstring = { enable = true },
})
2022-04-22 09:50:18 +03:00
-- vim.wo.foldmethod = 'expr'
-- im.wo.foldexpr = 'nvim_treesitter#foldexpr()'
end