You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
A web-focused Neovim configuration based on kickstart.nvim at 9b4fbc5, optimized for web development (HTML, CSS, JavaScript, TypeScript, Svelte, Astro, TailwindCSS).
Installation
1. System Dependencies (Required)
# Core requirements
brew install neovim # v0.12+ required# For Treesitter parsing and compilation
brew install tree-sitter-cli
brew install --cask font-jetbrains-mono-nerd-font
# or
brew install --cask font-fira-code-nerd-font
Then set your terminal to use the installed font.
3. Clone and Start
# Backup existing config
mv ~/.config/nvim ~/.config/nvim.bak
mv ~/.local/share/nvim ~/.local/share/nvim.bak
mv ~/.local/state/nvim ~/.local/state/nvim.bak
mv ~/.cache/nvim ~/.cache/nvim.bak
# Clone this config
git clone <your-repo>~/.config/nvim
# Start Neovim - plugins will auto-install on first launch
nvim
4. Post-Install Steps
Run these commands in Neovim after first launch:
" Wait for lazy.nvim to finish installing plugins, then:" Generate help tags
:helptagsALL" Install treesitter parsers (auto-installs, but can force)
:TSUpdate
" Check health
:checkhealth