Last active
August 28, 2021 22:02
-
-
Save kamack38/d9bc20e52edd5dad1bf41a0c34a07e17 to your computer and use it in GitHub Desktop.
Downloads and installs essenstial porgrams
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#/bin/bash | |
# install FriaCode Nerd Font | |
wget https://github.com/ryanoasis/nerd-fonts/releases/download/v2.1.0/FiraCode.zip | |
unzip FiraCode.zip -d ~/.fonts | |
cd ~/.fonts | |
rm -v !("*.otf"|"Fira Code*") | |
fc-cache -fv | |
sudo add-apt-repository ppa:neovim-ppa/unstable | |
sudo apt-get update | |
sudo apt-get install neovim -y | |
git clone https://github.com/NvChad/NvChad/ ~/.config/nvim --depth 10 && nvim +PackerSync |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment