mirror of
https://github.com/Tilo-K/neovim-config.git
synced 2026-07-03 13:43:02 +00:00
11 lines
179 B
Lua
11 lines
179 B
Lua
return {
|
|
"nvim-tree/nvim-tree.lua",
|
|
version = "*",
|
|
dependencies = {
|
|
"nvim-tree/nvim-web-devicons",
|
|
},
|
|
config = function()
|
|
require("nvim-tree").setup {}
|
|
end,
|
|
}
|