Systemsettings
Find a file
2023-03-10 13:32:33 +01:00
.byobu [byobu] enabled true color support for tmux (for vim) 2021-09-08 08:23:45 +02:00
.config [neomutt] added basic config 2023-03-10 13:32:33 +01:00
.elinks elinks: dump in color 2021-09-08 08:23:45 +02:00
.gnupg GnuPG: updated config for smart cards 2021-12-17 07:25:09 +01:00
.local moved the generation of local environment variables to its own generator script 2023-03-10 13:32:33 +01:00
.nano nano: updated syntax submodule 2021-12-17 07:27:15 +01:00
.newsboat Added Newsboat config 2020-07-28 10:59:35 +02:00
.vim vim: added more plugins for deoplete, updated Vundle 2020-07-23 10:29:05 +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 Argos is only needed on GNOME3 systems. 2020-07-23 10:29:05 +02:00
.gtkrc-2.0.mine switched to Arc Dark 2019-03-01 06:47:35 +01:00
.gvimrc Moved files so that you can convert $HOME in a git repository directly 2018-05-29 11:01:50 +02:00
.nanorc Added new files for syntax highlighting to nano 2018-12-28 06:45:49 +01:00
.npmrc Don't rely on absolute path names in .npmrc 2018-10-26 09:27:23 +02:00
.ptignore [pt] added global ignore file 2021-09-08 08:23:45 +02:00
.stalonetrayrc stalonetray: align vertical 2018-05-10 16:00:16 +02:00
.vimrc [vimrc] switched to Blamer 2023-03-10 13:32:33 +01:00
.XCompose XCompose: simplfy file 2021-09-08 08:23:45 +02:00
.xinitrc xinitrc: Added QT style (for i3, openbox) 2021-11-23 17:22:03 +01:00
.Xresources fonts: set default font size to 9 pt 2022-12-09 16:34:45 +01:00
.xsessionrc [xsessionrc] allow for a localenv, if it exists 2023-03-10 13:32:33 +01:00
.zshrc moved the generation of local environment variables to its own generator script 2023-03-10 13:32:33 +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.