mirror of
https://git.sr.ht/~danbarber/dotfiles
synced 2025-03-04 08:59:18 +00:00
19 lines
418 B
Lua
19 lines
418 B
Lua
return {
|
|
"nvim-neo-tree/neo-tree.nvim",
|
|
|
|
dependencies = {
|
|
"nvim-lua/plenary.nvim",
|
|
"nvim-tree/nvim-web-devicons",
|
|
"MunifTanjim/nui.nvim",
|
|
},
|
|
|
|
config = function()
|
|
-- Unless you are still migrating, remove the deprecated commands from v1.x
|
|
vim.cmd([[ let g:neo_tree_remove_legacy_commands = 1 ]])
|
|
|
|
require("neo-tree").setup({
|
|
hijack_netrw_behavior = "open_default",
|
|
})
|
|
end,
|
|
}
|