Installation
Plugins
Step 1: Plugin Manager
To add plugins to Neovim, you need a plugin manager. I am using lazy.nim.
Follow the installation guide, using the Structured Setup and set up your plugins/
folder following Usage > Structuring Your Plugins
.
nvim-tree
Add the plugin module to plugins/
.
return {
{
"nvim-tree/nvim-tree.lua",
version = "*",
lazy = false,
dependencies = {
"nvim-tree/nvim-web-devicons",
},
config = function ()
require("nvim-tree").setup({
sort = {
sorter = "case_sensitive"
}
})
end
}
}
- Install Nerd Fonts on your system.
- Change the font through the terminal.
- Learn the commands.