My Neovim configuration
1. Install Neovim
2. Clone the repo to ~/.config/nvim
$ mkdir ~/.config
$ git clone https://github.com/sakshamgupta05/nvim-config.git ~/.config/nvim
3. Install ripgrep for live_grep in telescope plugin
brew install ripgrep
4. Open Neovim by typing nvim
Enjoy!
Plugins reference https://www.lazyvim.org/
rm -rf .local/share/nvim
brew uninstall neovim
# Check ouput of following commands. If clang is being used, go to the next step.
gcc --version
g++ --version
# Install gcc
brew install gcc
cd /opt/homebrew/bin
ln -s ./gcc-14 gcc
ln -s ./g++-14 g++
# These should now point to gcc
gcc --version
g++ --version
alias vi="nvim"
alias vim="nvim"
alias e="nvim ."