Download Neovim here Also for debian based os just run sudo apt install nvim
You can find the official plugin manager instructions on the Lazy.nvim website or their GitHub.
Where to put your config files:
- Linux/macOS:
~/.config/nvim
Note: If you can’t see this folder, make sure “show hidden files” is turned on in your file explorer.If missing create one.
Basic Commands Reference
| Command | What it does |
|---|---|
:e . | Open the file explorer |
:e filename | Open a specific file |
:bd | Close the current file (buffer) |
:q | Quit Neovim |
:! <cmd> | Run a terminal shell command (e.g., :!ls) |