Skip to content

Neovim Troubleshooting

Plugin Issues

Plugins Not Loading

# Check plugin status
:Lazy

# Reinstall all plugins
:Lazy clean
:Lazy sync

# Check for errors
:messages
:checkhealth lazy

LSP Not Working

# Check LSP status
:LspInfo

# Install language servers
:Mason

# Restart LSP
:LspRestart

# Check logs
:LspLog

Treesitter Errors

# Update parsers
:TSUpdate

# Check status
:checkhealth nvim-treesitter

# Reinstall specific parser
:TSInstall python

Configuration Issues

Startup Errors

# Verbose output
nvim --startuptime startup.log

# Check errors
:messages

# Test minimal config
nvim --clean

Key Bindings Not Working

# Check mappings
:map
:nmap
:imap

# Test specific mapping
:verbose map <leader>ac