Essential dotfiles for setting up dev environment
- neovim 0.10 and above
- fzf (fuzzy finder)
- ripgrep (Rg)
- bat (for syntax highlighting in fzf preview window)
Follow instructions here - https://github.com/neovim/neovim/releases
git clone --depth 1 https://github.com/junegunn/fzf.git ~/.fzf
~/.fzf/installbrew install fzfFollow instructions here: https://github.com/BurntSushi/ripgrep#installation to install version 0.5 and above
brew install ripgrepwget -O bat.tar.gz https://github.com/sharkdp/bat/releases/download/v0.15.0/bat-v0.15.0-x86_64-unknown-linux-musl.tar.gz
sudo tar -xvzf bat.tar.gz -C /usr/local
cd /usr/local && sudo mv bat-v0.7.1-x86_64-unknown-linux-musl bat
cd -
sudo ln -s /usr/local/bat/bat /usr/bin/batbrew install bat