2016-04-08 01:39:33 +01:00
|
|
|
|
#!/usr/bin/env zsh
|
|
|
|
|
|
|
|
|
|
# Current dir
|
|
|
|
|
BASEDIR=$(pwd)
|
|
|
|
|
|
2016-05-13 12:34:48 +01:00
|
|
|
|
# Update git submodules
|
2016-07-13 13:38:11 +01:00
|
|
|
|
echo "Updating git submodules"
|
2016-05-13 12:34:48 +01:00
|
|
|
|
git submodule init && git submodule update
|
|
|
|
|
|
2016-04-08 01:39:33 +01:00
|
|
|
|
# ln the various files
|
2016-07-13 13:38:11 +01:00
|
|
|
|
echo "Sym-linking the various config files"
|
2016-04-08 03:42:12 +01:00
|
|
|
|
test -L $HOME/.gitignore || ln -f -s $BASEDIR/gitignore $HOME/.gitignore
|
2016-04-08 03:37:25 +01:00
|
|
|
|
test -L $HOME/.hushlogin || ln -f -s $BASEDIR/hushlogin $HOME/.hushlogin
|
2017-12-10 12:01:30 +00:00
|
|
|
|
test -L $HOME/.tmux.conf || ln -f -s $BASEDIR/tmux $HOME/.tmux.conf
|
2021-11-07 18:24:37 +00:00
|
|
|
|
test -L $HOME/.config/starship.toml || ln -f -s $BASEDIR/starship.toml $HOME/.config/starship.toml
|
2024-06-10 20:37:31 +01:00
|
|
|
|
test -L $HOME/.config/jmb.omp.toml || ln -f -s $BASEDIR/jmb.omp.toml $HOME/.config/jmb.omp.toml
|
2023-05-21 18:23:22 +01:00
|
|
|
|
test -d $HOME/.sheldon || mkdir $HOME/.sheldon
|
2022-07-16 11:34:53 +01:00
|
|
|
|
test -L $HOME/.sheldon/plugins.toml || ln -f -s $BASEDIR/sheldon.toml $HOME/.sheldon/plugins.toml
|
2018-01-24 15:27:12 +00:00
|
|
|
|
test -L $HOME/.zsh || ln -f -s $BASEDIR/zsh $HOME/.zsh
|
|
|
|
|
test -L $HOME/.zshrc || ln -f -s $BASEDIR/zshrc.zsh $HOME/.zshrc
|
2016-04-08 01:39:33 +01:00
|
|
|
|
|
2024-04-29 18:22:54 +01:00
|
|
|
|
# setup gpg conf
|
|
|
|
|
test -d $HOME/.gnupg || mkdir $HOME/.gnupg
|
|
|
|
|
cp -f $BASEDIR/gnupg/common.conf $HOME/.gnupg/common.conf
|
|
|
|
|
cp -f $BASEDIR/gnupg/dirmngr.conf $HOME/.gnupg/dirmngr.conf
|
|
|
|
|
cp -f $BASEDIR/gnupg/gpg.conf $HOME/.gnupg/gpg.conf
|
|
|
|
|
chmod 700 $HOME/.gnupg
|
|
|
|
|
chmod 640 $HOME/.gnupg/common.conf
|
|
|
|
|
chmod 640 $HOME/.gnupg/dirmngr.conf
|
|
|
|
|
chmod 640 $HOME/.gnupg/gpg.conf
|
|
|
|
|
|
2016-05-13 08:23:58 +01:00
|
|
|
|
# ln vim files
|
2016-07-13 13:38:11 +01:00
|
|
|
|
echo "Setting up vim"
|
2016-05-13 12:34:48 +01:00
|
|
|
|
test -d $HOME/.vim && rm -rf $HOME/.vim
|
|
|
|
|
ln -s $BASEDIR/vim $HOME/.vim
|
2016-05-13 08:23:58 +01:00
|
|
|
|
test -L $HOME/.vimrc || ln -f -s $HOME/.vim/vimrc $HOME/.vimrc
|
|
|
|
|
|
2016-04-08 01:39:33 +01:00
|
|
|
|
# .gitconfig gets edited by .extra so we won’t symlink it, but copy it
|
2016-07-13 13:38:11 +01:00
|
|
|
|
echo "For compatability we chall copy the global gitconfig"
|
2016-04-08 01:39:33 +01:00
|
|
|
|
cp $BASEDIR/gitconfig $HOME/.gitconfig
|
|
|
|
|
|
|
|
|
|
# Source zshrc
|
2016-07-13 13:38:11 +01:00
|
|
|
|
echo "And finally, source the .zshrc"
|
2016-04-08 01:39:33 +01:00
|
|
|
|
source $HOME/.zshrc
|