Updated list of sw to install and gitignore file

This commit is contained in:
Tracey Clark 2020-09-06 15:49:58 -05:00
commit db6b92df8e

View file

@ -3,13 +3,13 @@
first="Tracey" first="Tracey"
last="Clark" last="Clark"
email="tracey_dev@tlcnet.info" email="tracey_dev@tlcnet.info"
phabtoken="replace_with_phabtoken" phabtoken=`cat ~/.phab_token_solus`
# Switch to unstable repository and install applications # Switch to unstable repository and install applications
sudo eopkg ar Solus https://mirrors.rit.edu/solus/packages/unstable/eopkg-index.xml.xz sudo eopkg ar Solus https://mirrors.rit.edu/solus/packages/unstable/eopkg-index.xml.xz
sudo eopkg enable-repo Solus-Dev sudo eopkg enable-repo Solus-Dev
sudo eopkg up -y sudo eopkg up -y
sudo eopkg install vscode htop zsh openssh vim ripgrep sudo eopkg install vscode htop zsh openssh vim ripgrep micro
# Install and setup build tools # Install and setup build tools
sudo eopkg it -c system.devel sudo eopkg it -c system.devel
@ -25,6 +25,9 @@ ln -sv common/Makefile.common .
ln -sv common/Makefile.toplevel Makefile ln -sv common/Makefile.toplevel Makefile
ln -sv common/Makefile.iso . ln -sv common/Makefile.iso .
touch ~/.gitignore
echo '*~' >> ~/.gitignore
git config --global core.excludesFile ~/.gitignore
git config --global user.name "$first $last" git config --global user.name "$first $last"
git config --global user.email $email git config --global user.email $email