Files
neovim-config/archive/neo-tree.lua
T
rootiest c0a3511384 🧙 Major Restructuring Update
- Plugins are now properly organized into separate folders.
- General configurations are also now organized by category into
folders.
- Now using lazyvim-defined plugins whenever possible for a more
consistent and clean experience.
- Duplicate manual plugin definitions were removed.
- Extensive testing has been performed to ensure config works on fresh
installs and a variety of systems.
- Further slimming of manual plugins and an updated dependency list is
forthcoming.
2024-07-08 10:17:08 -04:00

20 lines
555 B
Lua

-- -----------------------------------------------------------------------------
-- -------------------------------- neo-tree -----------------------------------
-- -----------------------------------------------------------------------------
return {
"nvim-neo-tree/neo-tree.nvim",
lazy = true,
branch = "v3.x",
dependencies = {
"nvim-lua/plenary.nvim",
"MunifTanjim/nui.nvim",
},
config = function()
require("neo-tree").setup({
source_selector = {
winbar = true,
statusline = false,
},
})
end,
}