Systemsettings
Find a file
2024-11-11 15:45:18 +01:00
.byobu
.config vim: big update 2024-11-05 10:28:12 +01:00
.elinks
.gnupg
.local added light script 2024-11-11 15:45:18 +01:00
.nano
.newsboat
.vim vim: big update 2024-11-05 10:28:12 +01:00
.colordiffrc
.curlrc
.gitmodules
.gtkrc-2.0.mine
.gvimrc
.nanorc
.npmrc
.ptignore
.stalonetrayrc
.vimrc vim: big update 2024-11-05 10:28:12 +01:00
.XCompose
.xinitrc
.Xresources
.xsessionrc
.zshrc
LICENSE
README.md

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.