Compare commits
3 commits
7244c42c27
...
4cf2f51905
Author | SHA1 | Date | |
---|---|---|---|
4cf2f51905 | |||
753853a916 | |||
50b0adb321 |
4 changed files with 14 additions and 9 deletions
|
@ -23,3 +23,7 @@
|
||||||
path = ~/.gitconfig_local
|
path = ~/.gitconfig_local
|
||||||
[includeIf "gitdir:~/code/"]
|
[includeIf "gitdir:~/code/"]
|
||||||
path = ~/code/.gitconfig
|
path = ~/code/.gitconfig
|
||||||
|
[branch]
|
||||||
|
sort = committerdate
|
||||||
|
[diff]
|
||||||
|
algorithm = histogram
|
||||||
|
|
2
.zshenv
2
.zshenv
|
@ -42,6 +42,8 @@ if [ -f "$HOME/.local/share/pnpm" ]; then
|
||||||
esac
|
esac
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
[ -d "$HOME/.asdf" ] && export PATH="$HOME/.asdf/shims:$PATH"
|
||||||
|
|
||||||
export PATH="$PATH:/home/kaholaz/.cache/scalacli/local-repo/bin/scala-cli"
|
export PATH="$PATH:/home/kaholaz/.cache/scalacli/local-repo/bin/scala-cli"
|
||||||
|
|
||||||
# >>> coursier install directory >>>
|
# >>> coursier install directory >>>
|
||||||
|
|
4
.zshrc
4
.zshrc
|
@ -45,10 +45,6 @@ if [ -z "$TMUX" ] && [[ "$HAS_NETWORK" == 1 ]]; then
|
||||||
fortune -s
|
fortune -s
|
||||||
fi
|
fi
|
||||||
|
|
||||||
if [ -d "$HOME/.asdf" ]; then
|
|
||||||
\. "$HOME/.asdf/asdf.sh"
|
|
||||||
fi
|
|
||||||
|
|
||||||
export NVM_DIR="$HOME/.nvm"
|
export NVM_DIR="$HOME/.nvm"
|
||||||
if [ -s "$NVM_DIR/nvm.sh" ]; then
|
if [ -s "$NVM_DIR/nvm.sh" ]; then
|
||||||
[ -s "$NVM_DIR/nvm.sh" ] && \. "$NVM_DIR/nvm.sh" # This loads nvm
|
[ -s "$NVM_DIR/nvm.sh" ] && \. "$NVM_DIR/nvm.sh" # This loads nvm
|
||||||
|
|
13
README.md
13
README.md
|
@ -1,10 +1,13 @@
|
||||||
# To install:
|
# To install:
|
||||||
git clone --bare git@github.com:Kaholaz/dotfiles.git $HOME/.dotfiles
|
git clone --bare http://git.kaholaz.net/kaholaz/dotfiles $HOME/.dotfiles
|
||||||
|
|
||||||
alias dotfiles='/usr/bin/git --git-dir=$HOME/.dotfiles/ --work-tree=$HOME'
|
alias dotf='/usr/bin/git --git-dir=$HOME/.dotfiles/ --work-tree=$HOME'
|
||||||
|
|
||||||
dotfiles config --local status.showUntrackedFiles no
|
dotf config --local status.showUntrackedFiles no
|
||||||
|
|
||||||
dotfiles restore --staged . (WARNING: DELETES ANY LOCAL DOTFILES)
|
dotf restore --staged .
|
||||||
|
|
||||||
|
dotf restore .
|
||||||
|
|
||||||
|
dotf remote set-url origin git@git.kaholaz.net:kaholaz/dotfiles.git
|
||||||
|
|
||||||
dotfiles checkout
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue