Compare commits
No commits in common. "5cecab18eb21e835479bb045e88859689bdeb6b5" and "a6e4ce98f00d308039ae7d9893eb5cc3c24f41b0" have entirely different histories.
5cecab18eb
...
a6e4ce98f0
5 changed files with 15 additions and 29 deletions
|
@ -1,8 +1,6 @@
|
|||
#!/usr/bin/env sh
|
||||
|
||||
export DRONE_SERVER="https://ci.serguzim.me"
|
||||
|
||||
export HASTE_SERVER="https://haste.snrd.eu"
|
||||
export DRONE_SERVER='https://ci.serguzim.me'
|
||||
|
||||
export LINKWARDEN_URL="https://bookmarks.serguzim.me"
|
||||
|
||||
|
|
|
@ -11,6 +11,7 @@
|
|||
|
||||
[diff]
|
||||
tool = difftastic
|
||||
external = difft
|
||||
[difftool]
|
||||
prompt = false
|
||||
[difftool "difftastic"]
|
||||
|
@ -23,10 +24,12 @@
|
|||
b = branch -vv
|
||||
ci = commit
|
||||
cia = commit -C HEAD --amend
|
||||
d = difftool
|
||||
dc = difftool --cached
|
||||
ds = difftool --stat
|
||||
dw = difftool --word-diff=color
|
||||
d = diff
|
||||
dc = diff --cached
|
||||
ds = diff --stat
|
||||
dw = diff --word-diff=color
|
||||
dt = difftool
|
||||
dtc = difftool --cached
|
||||
l = log --graph
|
||||
lo = log --graph --decorate --pretty='format:%C(auto)%h <%as>%d %s' --abbrev-commit --all
|
||||
s = status
|
||||
|
|
|
@ -18,7 +18,6 @@
|
|||
git # git
|
||||
gitflow # tool for git workflow
|
||||
git-lfs # git support for large files
|
||||
haste-client # tool to paste files
|
||||
hostname # tool to get hostname
|
||||
jq # tool for json
|
||||
moar # moar is less
|
||||
|
|
|
@ -1,23 +1,9 @@
|
|||
#!/usr/bin/env sh
|
||||
|
||||
echo "Loading environment variables"
|
||||
. "$HOME/.config/environment"
|
||||
|
||||
echo "Configuring yadm"
|
||||
yadm gitconfig core.bare false
|
||||
yadm gitconfig core.worktree "$HOME"
|
||||
yadm gitconfig status.showUntrackedFiles no
|
||||
echo "Updating push-url to use ssh"
|
||||
yadm remote set-url --push origin "git@git.serguzim.me:serguzim/.dotfiles.git"
|
||||
|
||||
if [ ! -x "$(command -v autoinstall)" ];
|
||||
then
|
||||
echo "Installing autoinstall command"
|
||||
mkdir -p "$HOME/.local/bin"
|
||||
curl -Lo "$HOME/.local/bin/autoinstall" https://git.serguzim.me/serguzim/tools/releases/download/latest/autoinstall
|
||||
chmod +x "$HOME/.local/bin/autoinstall"
|
||||
fi
|
||||
|
||||
echo "Autoinstalling base"
|
||||
autoinstall run base
|
||||
echo "Autoinstall base"
|
||||
autoinstall base
|
||||
|
||||
echo "Don't forget to decrypt yadm secrets"
|
||||
|
|
Loading…
Reference in a new issue