Run :MasonInstallAll command after lazy.nvim finishes downloading plugins.
Last active
August 28, 2024 23:31
-
-
Save JanGalek/8fcc46f5c40c11636b086b1420c71802 to your computer and use it in GitHub Desktop.
This file contains 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
#!/usr/bin/env sh | |
sudo apt-get install ripgrep | |
# installs nvm (Node Version Manager) | |
curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.40.0/install.sh | bash | |
wget https://github.com/neovim/neovim/releases/download/v0.10.1/nvim-linux64.tar.gz | |
tar tar xzvf nvim-linux64.tar.gz | |
cd nvim-linux64 | |
sudo cp -R * /usr | |
git clone https://github.com/NvChad/starter ~/.config/nvim && nvim |
This file contains 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
#!/usr/bin/env sh | |
curl -LO https://github.com/BurntSushi/ripgrep/releases/download/14.1.0/ripgrep_14.1.0-1_amd64.deb && sudo dpkg -i ripgrep_14.1.0-1_amd64.deb | |
sudo apt install gcc make | |
sudo snap install --beta nvim --classic | |
wget https://github.com/ryanoasis/nerd-fonts/releases/download/v3.2.1/FiraMono.zip | |
unzip FiraMono.zip -d FiraMono | |
sudo mkdir /usr/local/share/fonts/FiraMono && sudo mv FiraMono/*.otf /usr/local/share/fonts/FiraMono | |
sudo chown root:staff /usr/local/share/fonts/FiraMono -R | |
sudo chmod 644 /usr/local/share/fonts/FiraMono/* -R | |
sudo chmod 755 /usr/local/share/fonts/FiraMono | |
sudo fc-cache -fv |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment