A minimal Neovim configuration intended as a starting point for your own setup - simple, modern, and easy to extend, tailored for programming and development workflows.
- Uses the new built-in
vim.packplugin manager - The entire configuration, except for the
language server configurations, is defined in
init.lua
Clone this configuration into ~/.config/nvim (make sure to back up your
existing one first)
git clone https://github.com/vsoftco/nvim-lite ~/.config/nvimthen launch Neovim
nvimThis configuration provides the following custom commands as wrappers around
vim.pack:
:PackUpdate- updates plugins:PackClean- removes unused plugins from the disk:PackSync- pin plugins to the version recorded innvim-pack-lock.json
To try this configuration without affecting your current setup, clone it into a
separate directory under ~/.config, for example
git clone https://github.com/vsoftco/nvim-lite ~/.config/nvim-testThen start Neovim with
NVIM_APPNAME=nvim-test nvim