12 lines
291 B
Lua
12 lines
291 B
Lua
vim.pack.add({
|
|
--Neo-Tree
|
|
'https://github.com/MunifTanjim/nui.nvim',
|
|
'https://github.com/nvim-lua/plenary.nvim',
|
|
"https://github.com/nvim-tree/nvim-web-devicons",
|
|
'https://github.com/nvim-neo-tree/neo-tree.nvim',
|
|
})
|
|
|
|
require("neo-tree").setup({
|
|
close_if_last_window = true,
|
|
})
|