mirror of https://github.com/harish2704/dotFiles
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
31 lines
727 B
31 lines
727 B
#!/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
|
|
|
|
|