Go to file
Arti Zirk 007f41c4a0 use nvim editor, config email 2019-04-02 17:10:34 +03:00
.bin use nvim editor, config email 2019-04-02 17:10:34 +03:00
.config use nvim editor, config email 2019-04-02 17:10:34 +03:00
.gnupg Force yubikey reader for gnupg 2019-03-25 15:00:22 +02:00
.gitconfig use nvim editor, config email 2019-04-02 17:10:34 +03:00
.gitignore remove gitconfig options 2018-11-12 16:26:22 +02:00
.notmuch-config Add notmuch config and update astroid config 2019-03-28 13:58:30 +02:00
.pam_environment add gpg config 2018-11-13 13:11:25 +02:00
.zshrc use nvim editor, config email 2019-04-02 17:10:34 +03:00
README.md better readme 2018-11-12 16:27:21 +02:00

README.md

Dotfiles

Instructions here https://developer.atlassian.com/blog/2016/02/best-way-to-store-dotfiles-git-bare-repo/

git clone --bare git@github.com:artizirk/dotfiles.git $HOME/.cfg
function config {
   /usr/bin/git --git-dir=$HOME/.cfg/ --work-tree=$HOME $@
}
mkdir -p .config-backup
config checkout
if [ $? = 0 ]; then
    echo "Checked out config.";
else
    echo "Backing up pre-existing dot files.";
    config checkout 2>&1 | egrep "\s+\." | awk {'print $1'} | xargs -I{} mv {} .config-backup/{}
fi;
config checkout
config config status.showUntrackedFiles no