Installation Guide
This guide will help you install and set up the Neovim configuration.
Prerequisites
- Neovim (version 0.9.0 or higher)
- Git
- A Unix-like operating system (Linux, macOS, or WSL on Windows)
Installation Steps
-
Backup your existing Neovim configuration (if any):
Terminal window mv ~/.config/nvim ~/.config/nvim.bakmv ~/.local/share/nvim ~/.local/share/nvim.bakmv ~/.local/state/nvim ~/.local/state/nvim.bakmv ~/.cache/nvim ~/.cache/nvim.bak -
Clone the repository:
Terminal window git clone https://github.com/SOUMITRO-SAHA/neovim-config.git ~/.config/nvim -
Start Neovim:
Terminal window nvimThe first time you start Neovim, Lazy.nvim will automatically install all plugins.
Post-Installation
After installation, you can:
- Customize your configuration by editing files in
~/.config/nvim/lua/
- Add or remove plugins in
~/.config/nvim/lua/plugins/
- Update plugins using
:Lazy update
Troubleshooting
If you encounter any issues:
- Check if Neovim version is 0.9.0 or higher
- Ensure all prerequisites are installed
- Try removing the Neovim cache:
rm -rf ~/.cache/nvim
- Restart Neovim
For more help, visit the GitHub repository or open an issue.