mirror of
https://github.com/nvim-lua/kickstart.nvim.git
synced 2025-08-07 19:44:58 +02:00
12 lines
195 B
Lua
12 lines
195 B
Lua
|
return {
|
||
|
'nvim-tree/nvim-tree.lua',
|
||
|
version = '*',
|
||
|
lazy = false,
|
||
|
dependencies = {
|
||
|
'nvim-tree/nvim-web-devicons',
|
||
|
},
|
||
|
config = function()
|
||
|
require('nvim-tree').setup {}
|
||
|
end,
|
||
|
}
|