Files
nvim-config/lua/plugins/neotree.lua
T

14 lines
317 B
Lua
Raw Normal View History

2025-01-16 00:19:31 -06:00
return {
"nvim-neo-tree/neo-tree.nvim",
branch = "v3.x",
dependencies = {
"nvim-lua/plenary.nvim",
"nvim-tree/nvim-web-devicons",
"MunifTanjim/nui.nvim",
},
config = function()
vim.keymap.set('n', '<C-b>', ':Neotree filesystem reveal right<CR>', { desc = 'Neotree show explorer' })
end
}