-
-
Notifications
You must be signed in to change notification settings - Fork 619
Installation
Alexander Courtis edited this page Mar 13, 2023
·
9 revisions
Required
nvim-tree/nvim-tree.lua
Recommended
-
nvim-tree/nvim-web-devicons
file icons
-
antosha417/nvim-lsp-file-operations
LSP file operation handling -
echasnovski/mini.base16
base16 colours
Please add unlisted plugin managers to this page.
use {
'nvim-tree/nvim-tree.lua',
requires = {
'nvim-tree/nvim-web-devicons', -- optional
},
tag = 'nightly' -- optional, updated every week. (see issue #1193)
}
Plug 'nvim-tree/nvim-web-devicons' " optional
Plug 'nvim-tree/nvim-tree.lua'
Importing file below or directory it is contained on lazy setup.
return {
"nvim-tree/nvim-tree.lua",
version = "*",
dependencies = {
"nvim-tree/nvim-web-devicons",
},
config = function()
require("nvim-tree").setup {}
end,
}