11 lines
348 B
Lua
11 lines
348 B
Lua
vim.pack.add({
|
|
{ src = "https://github.com/nvim-neo-tree/neo-tree.nvim", version = vim.version.range("3.*") },
|
|
{ src = "https://github.com/nvim-lua/plenary.nvim" },
|
|
{ src = "https://github.com/MunifTanjim/nui.nvim" },
|
|
{ src = "https://github.com/nvim-tree/nvim-web-devicons" },
|
|
})
|
|
|
|
require("neo-tree").setup({
|
|
window = { width = 30 },
|
|
})
|