Dot_Files/.config/nvim/lua/plugins/configs/treesitter.lua

22 lines
398 B
Lua
Raw Normal View History

2022-05-11 21:00:57 -05:00
local nvim_treesitter = require('nvim-treesitter.configs')
2022-01-14 01:41:10 -06:00
nvim_treesitter.setup({
2022-05-11 21:00:57 -05:00
ensure_installed = {
'norg',
},
highlight = {
enable = true,
additional_vim_regex_highlighting = true,
disable = { 'yaml' },
},
matchup = {
enable = true,
},
autotag = {
enable = true,
},
yati = {
enable = true,
},
2022-01-14 01:41:10 -06:00
})