dotfiles/home/apps/neovim/lua/plugins/nvim-tree.lua

26 lines
448 B
Lua

---@type LazyPluginSpec[]
return {
{
"nvim-tree/nvim-tree.lua",
opts = {
renderer = {
indent_markers = {
enable = true,
},
},
diagnostics = {
enable = true,
},
actions = {
file_popup = {
open_win_config = {
border = vim.g.bc.style,
},
},
},
},
dependencies = {
"nvim-tree/nvim-web-devicons",
},
},
}