Go to file
csa e153f4e61c fix README usage sample 2023-06-13 15:02:42 +09:00
.config consistent file naming 2023-06-13 00:53:04 -05:00
.editorconfig first commit 2023-06-13 13:08:56 +09:00
.gitattributes first commit 2023-06-13 13:08:56 +09:00
.shellcheckrc first commit 2023-06-13 13:08:56 +09:00
README.md fix README usage sample 2023-06-13 15:02:42 +09:00

README.md

"$HOME" is where dotfiles are

Usage:

cd .config
ln -s $(pwd)/{sh,bash,zsh} "$HOME/.config/"
# somewhere in .bashrc

if [ -f "$HOME/.config/bash/bashrc" ]; then
    . "$HOME/.config/bash/bashrc"
fi

# or in .zshrc

if [ -f "$HOME/.config/zsh/zshrc" ]; then
    . "$HOME/.config/zsh/zshrc"
fi