Added installer script

This commit is contained in:
2023-09-19 00:02:37 +05:30
parent bad43a250c
commit 45186b5796
6 changed files with 65 additions and 11 deletions
Executable
+31
View File
@@ -0,0 +1,31 @@
#!/usr/bin/env bash
thisDir=$(dirname $(realpath $0) )
installUtils(){
# Install https://github.com/harish2704/installer-scripts
wget 'https://raw.githubusercontent.com/harish2704/installer-scripts/master/installer.sh' -O - | sh
}
installNerdFonts(){
cd ~/Downloads
wget -c https://github.com/ryanoasis/nerd-fonts/releases/download/v3.0.2/CodeNewRoman.zip
unzip CodeNewRoman.zip *.otf
mkdir -p ~/.local/share/fonts/
mv CodeNewRoman*.otf ~/.local/share/fonts/
fc-cache
}
setupLunarVim(){
cd "$thisDir"
cd ./home/.local/Apps/neovim-distros/lunarvim/
git clone https://github.com/LunarVim/LunarVim ./
cd LunarVim
rm config.lua
ln -s ../config.lua ./
}
installUtils
installNerdFonts
setupLunarVim