config.nvim/lua/plugins/treesitter.lua

14 lines
699 B
Lua
Raw Normal View History

2021-09-07 23:26:21 +08:00
require'nvim-treesitter.configs'.setup {
2021-10-25 12:10:08 +08:00
ensure_installed = {"lua"}, -- one of "all", "maintained" (parsers with maintainers), or a list of languages
highlight = {
enable = true, -- false will disable the whole extension
-- Setting this to true will run `:h syntax` and tree-sitter at the same time.
-- Set this to `true` if you depend on 'syntax' being enabled (like for indentation).
-- Using this option may slow down your editor, and you may see some duplicate highlights.
-- Instead of true it can also be a list of languages
2022-05-28 23:54:46 +08:00
additional_vim_regex_highlighting = true,
2021-10-25 12:10:08 +08:00
use_languagetree = true
},
indent = {enable = true}
2021-09-07 23:26:21 +08:00
}