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

27 lines
448 B
Lua
Raw Normal View History

---@type LazyPluginSpec[]
return {
{
"nvim-tree/nvim-tree.lua",
opts = {
renderer = {
indent_markers = {
enable = true,
},
},
diagnostics = {
enable = true,
},
actions = {
file_popup = {
open_win_config = {
2023-06-12 05:46:16 +02:00
border = vim.g.bc.style,
},
},
},
},
dependencies = {
"nvim-tree/nvim-web-devicons",
},
},
}