Dot_Files/.config/nvim/lua/plugins/configs/file-explorer.lua

19 lines
359 B
Lua
Raw Normal View History

2022-05-11 21:00:57 -05:00
local treesitter = require('nvim-tree.configs')
2022-01-10 09:55:15 -06:00
treesitter.setup({
2022-05-11 21:00:57 -05:00
highlight = {
enable = true,
additional_vim_regex_highlighting = true,
disable = {
2022-01-10 09:55:15 -06:00
-- Ansible support reasons
2022-05-11 21:00:57 -05:00
'ansible.yaml',
2022-01-10 09:55:15 -06:00
},
2022-05-11 21:00:57 -05:00
},
matchup = {
enable = true,
},
autotag = {
enable = true,
},
2022-01-10 09:55:15 -06:00
})