dotfiles/modules/nvim/after/plugin/nvim-tree.lua

16 lines
222 B
Lua

local present, nvimtree = pcall(require, "nvim-tree")
if not present then
return
end
nvimtree.setup({
renderer = {
indent_markers = {
enable = true,
},
},
diagnostics = {
enable = true,
},
})