Compare commits
No commits in common. "6cfdf3d8933a667c7ef1a1ee631b2f57dcf13843" and "972d7c23906231e83f94595a4cc98a2a94732b0a" have entirely different histories.
6cfdf3d893
...
972d7c2390
@ -1,5 +1,13 @@
|
|||||||
#!/bin/bash
|
#!/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
|
for file in config.d/*.bash
|
||||||
do
|
do
|
||||||
bash $file
|
bash $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
|
|
@ -6,13 +6,3 @@ git config --global user.name "Xavier Logerais"
|
|||||||
git config --global user.email "xavier@logerais.com"
|
git config --global user.email "xavier@logerais.com"
|
||||||
git config --global rerere.enabled 1
|
git config --global rerere.enabled 1
|
||||||
git config --global merge.conflictstyle diff3
|
git config --global merge.conflictstyle diff3
|
||||||
|
|
||||||
cat <<EOF >~/.gitignore
|
|
||||||
# asdf
|
|
||||||
.tool-versions
|
|
||||||
# direnv
|
|
||||||
.envrc
|
|
||||||
.direnv
|
|
||||||
EOF
|
|
||||||
|
|
||||||
git config --global core.excludesfile ~/.gitignore
|
|
||||||
|
@ -1,7 +0,0 @@
|
|||||||
#!/bin/bash
|
|
||||||
|
|
||||||
# Install mise-en-place
|
|
||||||
|
|
||||||
if (command -v mise &>/dev/null); then
|
|
||||||
curl https://mise.run | sh
|
|
||||||
fi
|
|
Loading…
Reference in New Issue
Block a user