Skip to content

Plugins

https://dotfyle.com/neovim/plugins/top

Treesitter

More comprehensive syntax highlighting for files.

Tree

https://github.com/nvim-tree/nvim-tree.lua

:NvimTreeToggle

Netrw

Build into vim by default, Netrw - description

Just type this into terminal (opens Netrw if nerdtree not installed/configured)

$ nvim .
$ vim . 
:Ex
:Explorer

Installation

Add lines in init.lua:

-- now you can call require("lazy")
require("lazy").setup({
  -- list your plugins here, e.g., nvim-treesitter
  --
  {"nvim-treesitter/nvim-treesitter", branch = 'master', lazy = false, build = ":TSUpdate"},
  {"nvim-tree/nvim-tree.lua", branch = 'master', version = "*", lazy = false, },
})

require("nvim-treesitter.configs").setup {
    ensure_installed = {"tsx"},
    highlight = {enable = true },
}    

require("nvim-tree").setup {}