After years of using Integrated Development Environments (IDEs), I decided to enhance my productivity and transition to neovim as my daily driver. This repository houses all the configurations I use to ensure a smooth and efficient development experience.
Using alpha-nvim plugin.
-
Clone the Repository:
git clone https://github.com/diogonapoles/init.lua ~/.config/nvim
-
Set the
$NVIM_APPNAME
Environment Variable (optional):If you have multiple neovim configurations, set the
$NVIM_APPNAME
variable to specify which configuration to use, as long as it's in~/.config/
.export NVIM_APPNAME=whatever-name
-
Install
lazy.nvim
:lazy.nvim
is the plugin manager I use for neovim.git clone --depth 1 https://github.com/folke/lazy.nvim ~/.local/share/nvim/site/pack/lazy/start/lazy.nvim
-
Install Plugins:
Launch neovim and run the following command to install all specified plugins.
:Lazy sync
-
Enjoy!