Systemsettings
Find a file
2018-06-06 21:26:43 +02:00
.config Added new version of argos 2018-06-06 21:26:43 +02:00
.local/bin Moved files so that you can convert $HOME in a git repository directly 2018-05-29 11:01:50 +02:00
.colordiffrc Moved files so that you can convert $HOME in a git repository directly 2018-05-29 11:01:50 +02:00
.curlrc Moved files so that you can convert $HOME in a git repository directly 2018-05-29 11:01:50 +02:00
.gitmodules Added argos 2018-06-04 10:47:37 +02:00
.gvimrc Moved files so that you can convert $HOME in a git repository directly 2018-05-29 11:01:50 +02:00
.hyper.js Moved files so that you can convert $HOME in a git repository directly 2018-05-29 11:01:50 +02:00
.profile use an include guard with .profile 2018-06-05 04:55:45 +02:00
.stalonetrayrc stalonetray: align vertical 2018-05-10 16:00:16 +02:00
.vimrc Moved files so that you can convert $HOME in a git repository directly 2018-05-29 11:01:50 +02:00
.XCompose Added .Xcompose 2018-05-28 14:54:14 +02:00
.Xresources Moved files so that you can convert $HOME in a git repository directly 2018-05-29 11:01:50 +02:00
.zshrc Moved files so that you can convert $HOME in a git repository directly 2018-05-29 11:01:50 +02:00
LICENSE Initial commit 2013-08-29 02:08:56 -07:00
README.md extended README for bootstrapping, alias 2018-06-05 07:39:14 +02:00
stylus.json Added workflowy 2018-05-11 07:34:21 +02:00

systemsettings

These are my config files, feel free to use them as an inspiration. If you have any questions, please file an issue.

Bootstrapping

#! /bin/sh
TMPDIR=$(mktemp -u -p "$HOME" -d dotfiles.XXXXX)
git clone --separate-git-dir="$HOME/.cfg" git@github.com:schtobia/dotfiles.git "$TMPDIR"
[ -r "$TMPDIR/.gitmodules" ] && cp -vi "$TMPDIR/.gitmodules" "$HOME"
git --git-dir="$HOME/.cfg/" --work-tree="$HOME" config status.showUntrackedFiles no
rm -r $TMPDIR

Alias

alias config='git --git-dir="$HOME/.cfg/" --work-tree="$HOME"'