20 lines
486 B
Lua
20 lines
486 B
Lua
return {
|
|
'nvim-neo-tree/neo-tree.nvim',
|
|
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
|
|
},
|
|
opts = {
|
|
window = {
|
|
width = 34,
|
|
mappings = {
|
|
['<C-v>'] = 'open_vsplit',
|
|
['<C-x>'] = 'open_split',
|
|
},
|
|
},
|
|
},
|
|
}
|