dotfiles/home/apps/neovim/after/plugin/nvim-tree.lua

24 lines
329 B
Lua
Raw Normal View History

2023-02-09 16:42:53 +01:00
local present, nvimtree = pcall(require, "nvim-tree")
if not present then
return
end
nvimtree.setup({
renderer = {
indent_markers = {
enable = true,
},
},
diagnostics = {
enable = true,
},
2023-02-20 20:58:03 +01:00
actions = {
file_popup = {
open_win_config = {
border = "double",
},
},
},
2023-02-09 16:42:53 +01:00
})