Quick Setup Guide
Quick Setup Guide
Section titled “Quick Setup Guide”Follow this steps and this will get you maxxvim running in just few minutes.
Step 1: Prerequisites
Section titled “Step 1: Prerequisites”Ensure you have the following installed:
# Check Neovim version (should be 0.9+)nvim --version
# ripgrep is required for telescope search.# Ubuntu/Debiansudo apt install ripgrep
# macOSbrew install ripgrep
# Arch Linuxsudo pacman -S ripgrepStep 2: Install a Nerd Font
Section titled “Step 2: Install a Nerd Font”MaxxVim uses icons that require a Nerd Font:
- Download a Nerd Font from nerdfonts.com
- Recommended: JetBrains Mono Nerd Font or Fira Code Nerd Font
- Install the font and configure your terminal to use it
Step 3: Install MaxxVim
Section titled “Step 3: Install MaxxVim”# Backup existing Neovim configmv ~/.config/nvim ~/.config/nvim.backup 2>/dev/null || true
# Clone MaxxVimgit clone https://github.com/shubhisroking/maxxvim.git ~/.config/nvim
# Start NeovimnvimStep 4: First Launch
Section titled “Step 4: First Launch”On first launch, MaxxVim will:
- Install all plugins automatically
- Download and configure LSP servers
- Set up formatters and linters
This process takes 1-2 minutes. Once complete, restart Neovim.
Step 5: Verify Installation
Section titled “Step 5: Verify Installation”Test that everything works:
- Open a file:
<leader>ff(Space + f + f) - Check LSP: Open a code file and see if syntax highlighting works
- Toggle file explorer:
<leader>ee(Space + e + e) - Open terminal:
Ctrl + \
Troubleshooting
Section titled “Troubleshooting”If you encounter issues:
# Update plugins:Lazy sync
# Check Mason LSP servers:Mason
# Restart Neovim LSP:LspRestartNext Steps
Section titled “Next Steps”- Explore the key bindings with
<leader>(Space key) - Customize settings in
~/.config/nvim/lua/config/ - Add your own plugins in
~/.config/nvim/lua/plugins/