A custom LazyVim configuration.
To clone this config on a new machine:
git clone https://github.com/jacobdcastro/nvim-config.git ~/.config/nvimThen launch Neovim. LazyVim will automatically install all plugins and dependencies on first launch.
To update your local config with the latest changes from the remote:
cd ~/.config/nvim
git pull origin mainNeovim will automatically detect any changes and reload your configuration.
After modifying your config, commit and push your changes:
cd ~/.config/nvim
git add .
git commit -m "Your commit message"
git push origin mainThis ensures your config stays synced across all machines.