Compare commits

..

No commits in common. "6cfdf3d8933a667c7ef1a1ee631b2f57dcf13843" and "972d7c23906231e83f94595a4cc98a2a94732b0a" have entirely different histories.

4 changed files with 8 additions and 26 deletions

View File

@ -1,5 +1,13 @@
#!/bin/bash
# Configuration BASH
if [[ ! -d ~/.bash ]]
then
git clone --recursive https://github.com/xlogerais/config-bash.git ~/.bash
bash ~/.bash/create-links.bash
fi
for file in config.d/*.bash
do
bash $file

View File

@ -1,9 +0,0 @@
#!/bin/bash
# Configuration BASH
if [[ ! -d ~/.bash ]]
then
git clone --recursive https://github.com/xlogerais/config-bash.git ~/.bash
bash ~/.bash/create-links.bash
fi

View File

@ -6,13 +6,3 @@ git config --global user.name "Xavier Logerais"
git config --global user.email "xavier@logerais.com"
git config --global rerere.enabled 1
git config --global merge.conflictstyle diff3
cat <<EOF >~/.gitignore
# asdf
.tool-versions
# direnv
.envrc
.direnv
EOF
git config --global core.excludesfile ~/.gitignore

View File

@ -1,7 +0,0 @@
#!/bin/bash
# Install mise-en-place
if (command -v mise &>/dev/null); then
curl https://mise.run | sh
fi