nvim/lua/pika/plugins/neo-tree.lua
2024-08-17 20:25:24 +02:00

22 lines
565 B
Lua

return {
{
"nvim-neo-tree/neo-tree.nvim",
opts = {
window = {
mappings = {
["l"] = "open",
["o"] = "open",
["h"] = "close_node",
["C-v"] = "open_split",
},
},
branch = "v3.x",
dependencies = {
"nvim-lua/plenary.nvim",
"nvim-tree/nvim-web-devicons", -- not strictly required, but recommended
-- "MunifTanjim/nui.nvim",
"3rd/image.nvim", -- Optional image support in preview window: See `# Preview Mode` for more information
}
}
}
}