first commit

This commit is contained in:
Jason King
2025-08-18 01:50:02 +00:00
parent 8e00321629
commit 16f41bd98a
7 changed files with 560 additions and 0 deletions

21
setup.sh Executable file
View File

@@ -0,0 +1,21 @@
ln -sf $HOME/dotcfg/bashrc $HOME/.bashrc
ln -sf $HOME/dotcfg/bash_aliases $HOME/.bash_aliases
ln -sf $HOME/dotcfg/vimrc $HOME/.vimrc
ln -sf $HOME/dotcfg/rtorrent.rc $HOME/.rtorrent.rc
ln -sf $HOME/dotcfg/gitconfig $HOME/.gitconfig
GIT=false
for d in $PATH
do test -x $d/git && GIT=true
done
if $GIT; then
echo "git found! Setting up git..."
git config --global user.name "Jason King"
git config --global user.email "mazdagtr@gmail.com"
git config --global user.ename "mazdagtr@gmail.com"
git config --global credential.helper store
fi
git clone https://github.com/VundleVim/Vundle.vim.git ~/.vim/bundle/Vundle.vim
vim +PluginInstall +qall