astro-nvim/lua/plugins/neotree.lua

21 lines
389 B
Lua
Raw Normal View History

2024-04-27 21:45:20 +00:00
-- Customize Neotree
---@type LazySpec
2023-10-14 22:54:14 +00:00
return {
"nvim-neo-tree/neo-tree.nvim",
opts = {
filesystem = {
filtered_items = {
visible = true,
hide_dotfiles = false,
hide_gitignored = true,
},
},
2024-11-02 21:23:07 +00:00
window = {
mappings = {
["P"] = { "toggle_preview", config = { use_float = true, use_image_nvim = true } },
},
},
2023-10-14 22:54:14 +00:00
},
}