Dot_Files/.config/nvim/lua/plugins/configs/file-explorer.lua
Price Hiller e0a928e26a .
2022-05-19 08:58:39 -05:00

19 lines
357 B
Lua
Executable File

local nvim_tree = require('nvim-tree.configs')
nvim_tree.setup({
highlight = {
enable = true,
additional_vim_regex_highlighting = true,
disable = {
-- Ansible support reasons
'ansible.yaml',
},
},
matchup = {
enable = true,
},
autotag = {
enable = true,
},
})