Systemsettings
Find a file
2018-11-23 12:03:32 +01:00
.config renamed userChrome.css 2018-11-02 19:26:37 +01:00
.gnupg fixup! Added options from gist 2018-11-23 12:03:32 +01:00
.local switched to https in gitmodules 2018-06-18 16:32:20 +02:00
.nano Added new version of nano/syntax 2018-10-08 06:43:47 +02:00
.vim added Vundle 2018-06-16 06:45:57 +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 switched to https in gitmodules 2018-06-18 16:32:20 +02:00
.gtkrc-2.0.mine added .gtkrc 2018-11-02 19:25:47 +01: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 switch hyper.js to canary 2018-06-14 15:35:14 +02:00
.nanorc Added nano config, including syntax highlighting 2018-06-13 07:16:57 +02:00
.npmrc Don't rely on absolute path names in .npmrc 2018-10-26 09:27:23 +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 enable folding for vim 2018-09-28 16:29:24 +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 Added YouShouldUse to zshrc 2018-11-14 04:29:31 +01:00
LICENSE Initial commit 2013-08-29 02:08:56 -07:00
README.md Update README.md 2018-10-16 09:33:11 +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" https://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"'

References

This is partly based on the solution presented on HN.