From db6b92df8ebbbb48d0daede68cf68e53cb09a7d2 Mon Sep 17 00:00:00 2001 From: Tracey Clark Date: Sun, 6 Sep 2020 15:49:58 -0500 Subject: [PATCH] Updated list of sw to install and gitignore file --- solus_dev_setup.sh | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/solus_dev_setup.sh b/solus_dev_setup.sh index 9c5ea90..c89e50b 100755 --- a/solus_dev_setup.sh +++ b/solus_dev_setup.sh @@ -3,13 +3,13 @@ first="Tracey" last="Clark" email="tracey_dev@tlcnet.info" -phabtoken="replace_with_phabtoken" +phabtoken=`cat ~/.phab_token_solus` # Switch to unstable repository and install applications sudo eopkg ar Solus https://mirrors.rit.edu/solus/packages/unstable/eopkg-index.xml.xz sudo eopkg enable-repo Solus-Dev 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 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.iso . +touch ~/.gitignore +echo '*~' >> ~/.gitignore +git config --global core.excludesFile ~/.gitignore git config --global user.name "$first $last" git config --global user.email $email