Emacs, EXWM, Nyxt, Guix https://ambrevar.xyz
Pierre Neidhardt d904488d63 Helm: Set up helm-switch-to-repl. | 4 vuotta sitten | |
---|---|---|
.asy | 10 vuotta sitten | |
.cache | 5 vuotta sitten | |
.config | 4 vuotta sitten | |
.emacs.d | 4 vuotta sitten | |
.gnupg | 4 vuotta sitten | |
.local | 4 vuotta sitten | |
.mpv | 6 vuotta sitten | |
.package-lists | 4 vuotta sitten | |
.Xresources | 7 vuotta sitten | |
.atoolrc | 4 vuotta sitten | |
.bashrc | 4 vuotta sitten | |
.ccl-init.lisp | 6 vuotta sitten | |
.conkyrc | 4 vuotta sitten | |
.curlrc | 5 vuotta sitten | |
.eclrc | 4 vuotta sitten | |
.exwm | 5 vuotta sitten | |
.gitconfig | 5 vuotta sitten | |
.gitignore | 4 vuotta sitten | |
.guile | 4 vuotta sitten | |
.mailcap | 6 vuotta sitten | |
.mbsyncrc | 5 vuotta sitten | |
.notmuch-config | 5 vuotta sitten | |
.profile | 4 vuotta sitten | |
.sbclrc | 4 vuotta sitten | |
.swank.lisp | 5 vuotta sitten | |
.toprc | 6 vuotta sitten | |
.torrc | 6 vuotta sitten | |
.uncrustify.cfg | 6 vuotta sitten | |
.units | 6 vuotta sitten | |
.wgetrc | 5 vuotta sitten | |
.xbindkeysrc | 6 vuotta sitten | |
.xinitrc | 5 vuotta sitten | |
.xprofile | 4 vuotta sitten | |
.xsession | 5 vuotta sitten | |
COPYING | 6 vuotta sitten | |
readme.org | 4 vuotta sitten |
I use of Emacs for almost everything, including my window manager (EXWM), except for the Nyxt 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
.
Emails can be particularly tricky to set up, so I think they deserve a dedicated section. My configuration files:
mbsync
from the isync
project to synchronize mail mailboxesmbsync
to fetch new emails.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.
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 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 .
Or, from a different location:
$ cd /path/to/dotfiles $ stow -t ~ .
This has several advantages over direct versioning:
Unless stated otherwise, all files are under the GPL3 license. See COPYING for the full license.