Skip to content
Alexander Courtis edited this page Jun 25, 2023 · 9 revisions

Plugins

Required

  • nvim-tree/nvim-tree.lua

Recommended

  • nvim-tree/nvim-web-devicons file icons

Extensions

  • antosha417/nvim-lsp-file-operations LSP file operation handling
  • echasnovski/mini.base16 base16 colours

Plugin Managers

Please add unlisted plugin managers to this page.

use {
  'nvim-tree/nvim-tree.lua',
  requires = {
    'nvim-tree/nvim-web-devicons', -- optional
  },
}
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,
}

Older neovim Versions

If you cannot use the required version of nvim-tree you may use an older version via tag:

  • compat-nvim-0.7
  • compat-nvim-0.6

Please note that these compatibility versions are not maintained or updated.

Clone this wiki locally