Go to file
Pierre Neidhardt a6f731cc5f Tor: Configure wget, curl, youtube-dl instead of wrapping them 2019-02-27 16:42:21 +01:00
.asy Replace TikZ samples for Asymptote samples 2015-01-08 12:07:57 +01:00
.config Tor: Configure wget, curl, youtube-dl instead of wrapping them 2019-02-27 16:42:21 +01:00
.emacs.d Elfeed: Use Tor 2019-02-27 16:02:40 +01:00
.gnupg gnupg/gpg.conf: Disable the slow auto-key-retrieve 2018-09-18 20:39:20 +02:00
.guix-packages/ambrevar guix-packages/ambrevar/games: Add eduke32 2019-02-26 10:57:09 +01:00
.local Tor: Configure wget, curl, youtube-dl instead of wrapping them 2019-02-27 16:42:21 +01:00
.mpv mpv: Set "i" to default metadata display 2018-04-17 11:56:27 +05:30
.package-lists package-lists/guix-manifest: Add privoxy 2019-02-27 16:01:46 +01:00
.xkb Map Ctrl+Escape to Caps Lock 2017-05-27 16:41:36 +02:00
.Xresources Urxvt: Remove config 2017-07-28 12:06:09 +01:00
.ccl-init.lisp CCL: Re-use SBCL init file 2018-11-22 14:59:09 +01:00
.conkyrc conky: Remove network speed workaround since upstream fixed the issue 2019-02-14 16:59:35 +01:00
.curlrc Tor: Configure wget, curl, youtube-dl instead of wrapping them 2019-02-27 16:42:21 +01:00
.gitconfig gitconfig: Document netrc debug and verbose options 2018-09-18 12:36:15 +02:00
.gitignore gitignore: Remove music* and games* 2019-02-26 10:57:39 +01:00
.mailcap mime: Init mimeapps.list 2018-01-11 09:43:08 +01:00
.profile profile: Remove CC environment variable, use local/bin/cc instead 2018-11-17 13:30:31 +01:00
.sbclrc sbclrc: Don't set *PRINT-CASE* to :downcase as it may cause issues 2019-02-14 16:25:03 +01:00
.toprc top: Init 2018-01-16 10:52:46 +01:00
.torrc tor: Use India, Ukraine, South Korea exit nodes 2018-07-20 17:42:48 +02:00
.uncrustify.cfg uncrustify: Don't change cpp-comments to c-comments 2018-11-12 16:56:50 +01:00
.units units: Use currency.units from the user profile 2018-03-31 10:08:31 +05:30
.wgetrc Tor: Configure wget, curl, youtube-dl instead of wrapping them 2019-02-27 16:42:21 +01:00
.xbindkeysrc xbindkeysrc: Use pulseaudio 2018-07-07 09:38:56 +02:00
.xinitrc ssh: Move to GPG 2018-02-07 12:08:02 +01:00
.xprofile Privoxy: Start with session 2019-02-27 16:01:09 +01:00
.xsession xsession: Use 'exec' 2018-03-29 12:24:04 +05:30
COPYING Add GPL3 license 2018-12-03 23:03:35 +01:00
readme.org Add GPL3 license 2018-12-03 23:03:35 +01:00

readme.org

.dotfiles

Overview

I use of Emacs for almost everything, including my window manager (EXWM), except for the Next web browser. See my Emacs pro-tips.

As such, the more-or-less advanced configurations of my former favourite Unix programs are gone (Awesome, cmus, fish, fzf, Mutt, newsbeuter, ranger, urxvt, zathura, zsh). You can search for them before the git commit README: The Big Emacs Shift.

Setup

For the list of programs I currently use, see the .package-lists/ folder.

The homeinit script fully bootstraps a user profile with required files, folders, symlinks and applications.

The homeclean script removes trash files, cache and warns if critically private data is found (e.g. PGP keys).

The homesync script updates the package lists, prints the status of all known projects and optionally pushes the unmerged changes upstream.

As for managing a dotfiles repository, there are various approaches.

Direct versioning

Git makes it possible to use your home folder as a git repository, thus versioning all files directly.

$ cd
$ git init
$ git remote add origin <repo>
$ git fetch
$ git checkout master

GNU Stow

GNU Stow lets you symlink a project's files to an arbitrary folder.

The simplest setup would be to clone the dotfiles to, say, ~/dotfiles then run

$ cd ~/dotfiles
$ stow .

This has several advantages over direct versioning:

  • Subfolders in home are not subject to being included into the dotfiles git repository. This is especially relevant for projects under a version control system other than git.
  • No need for a .gitignore.
  • Simplified file control (add/remove/etc.).
  • You can fine-tune which program configuration to synchronize on a per-system basis.
  • You can manage several configurations for the same programs.

License

Unless stated otherwise, all files are under the GPL3 license. See COPYING for the full license.