Amin Bandali [Sat, 25 Aug 2018 05:17:54 +0000 (01:17 -0400)]
[emacs] update 3 drones
lib/helm master v3.0
lib/ox-hugo master
v0.8-332-g8e244fa
lib/projectile master
v1.0.0-23-g62ef2ae
Amin Bandali [Fri, 24 Aug 2018 18:26:12 +0000 (14:26 -0400)]
[emacs] add borg-nix-shell and use it to build notmuch's build deps
- currently only works in regular emacs session and not via terminal:
https://github.com/emacscollective/borg/issues/78
- TODO: add support for guix environment
Amin Bandali [Fri, 24 Aug 2018 18:25:07 +0000 (14:25 -0400)]
[emacs/notmuch] remove the g common binding and use notmuch's own G
Amin Bandali [Thu, 23 Aug 2018 22:32:31 +0000 (18:32 -0400)]
[emacs/notmuch] [re-]add a couple of bindings
Amin Bandali [Thu, 23 Aug 2018 21:06:51 +0000 (17:06 -0400)]
[emacs] minor changes
Amin Bandali [Thu, 23 Aug 2018 20:19:42 +0000 (16:19 -0400)]
[emacs] use-package projectile
Amin Bandali [Thu, 23 Aug 2018 20:19:15 +0000 (16:19 -0400)]
[emacs] use the standard C-c as my prefix, instead of M-m
at least for now
Amin Bandali [Thu, 23 Aug 2018 20:02:53 +0000 (16:02 -0400)]
[emacs] remove evil; back to using vanilla emacs
Amin Bandali [Thu, 23 Aug 2018 18:19:54 +0000 (14:19 -0400)]
[emacs] update 12 drones
lib/dante master
1.4-66-g8b3e799
lib/doom-modeline master
0.3.0-33-g9d15e92
lib/evil-collection master
5db4a9a
lib/flycheck master
31-170-g10248d4b
lib/ghub master
v2.0.1-30-g48e91c0
lib/helm master
v2.9.8-45-gc0449b96
lib/ivy master
0.10.0-387-g02537c9
lib/magit master
2.13.0-170-gce6bbc83
lib/org master release_9
.1.14-897-g80d334085
lib/ox-hugo master
v0.8-330-g35b7e1a
lib/projectile master
v1.0.0-22-ga4b447d
lib/proof-site master
v4.4-196-g95786256
Amin Bandali [Thu, 23 Aug 2018 16:42:39 +0000 (12:42 -0400)]
[emacs] work around org source block indentation issue with evil
happens due to (setq org-src-tab-acts-natively t)
another less-elegant workaround is to unbind TAB:
(define-key evil-motion-state-map (kbd "TAB") nil)
---
excerpt of conversation with wasamasa on #evil-mode about the issue:
│12:15:00 aminb | wasamasa: mannaged to pinpoint the cause:
│12:15:05 aminb | i had (setq org-src-tab-acts-natively t) in my config
│12:15:22 wasamasa | what does that do?
│12:15:23 aminb | which, for some reason, messes with indentation, and it only happens when evil is enabled
│12:15:26 aminb | give it a shot
│12:15:43 aminb | Documentation:
│12:15:43 aminb | If non-nil, the effect of TAB in a code block is as if it were
│12:15:43 aminb | issued in the language major mode buffer.
│12:15:57 wasamasa | sounds magic
│12:16:11 aminb | i can't notice any difference, at least not with emacs-lisp blocks
│12:16:23 aminb | except that it fucks with evil somehow
│12:19:12 wasamasa | ah, now I get fun behavior
│12:19:19 wasamasa | unless I unbind C-i :P
│12:20:56 aminb | wasamasa: :p so if you unbind C-i, indentation works fine even with that var set?
│12:21:28 wasamasa | I suspect that's why it works normally in my customized session, as opposed to the minimal one (where the block is indented with two spaces for each line)
│12:21:57 aminb | hmm
│12:22:11 wasamasa | ok, it's a bit more complicated
│12:22:35 wasamasa | org looks up the command for the pressed key (evil-jump-forward), executes that in the buffer, then does reformatting
│12:22:56 wasamasa | evil-jump-forward does no indentation, but the reformatting adds indentation unless you customized that
│12:23:10 wasamasa | which I did
│12:23:16 aminb | ha
│12:23:20 aminb | is there anyway to 'fix' this?
│12:23:22 wasamasa | I also unbound TAB and bound C-i separately from that
│12:23:24 wasamasa | well, not really
│12:23:49 aminb | hm okay
│12:23:49 wasamasa | org tries to do the smart thing, but didn't anticipate there's evil where keybindings resolve to something different depending on the state
│12:24:14 aminb | right
│12:26:02 wasamasa | try (define-key evil-motion-state-map (kbd "TAB") nil)
│12:26:29 wasamasa | but as noted, that will kill C-i
│12:27:47 aminb | wasamasa: yup, that seems to do it
│12:27:50 wasamasa | looking at the source of org-babel-do-in-edit-buffer you could do some hack so that the edit buffer comes up in insert state
│12:28:04 wasamasa | then TAB would be looked up correctly
│12:29:10 aminb | i see
│12:42:41 wasamasa | well indeed, try (add-hook 'org-src-mode-hook 'evil-insert-state)
(excerpt included with permission)
Amin Bandali [Thu, 23 Aug 2018 04:18:51 +0000 (00:18 -0400)]
[emacs][wip] adapt to evil-collection-notmuch bindings etc
Amin Bandali [Thu, 23 Aug 2018 02:44:15 +0000 (22:44 -0400)]
[emacs] further evil-related enhancements
Amin Bandali [Thu, 23 Aug 2018 01:19:38 +0000 (21:19 -0400)]
[emacs] switch back to evil
Amin Bandali [Wed, 22 Aug 2018 20:33:13 +0000 (16:33 -0400)]
[emacs] change my conventions prefix from ab to amin
Amin Bandali [Wed, 22 Aug 2018 04:38:35 +0000 (00:38 -0400)]
[emacs] remove Org html export related stuff
might want to bring some back later again
Amin Bandali [Wed, 22 Aug 2018 04:37:14 +0000 (00:37 -0400)]
[rc/sway] fix rofi-pass binding
Amin Bandali [Sat, 18 Aug 2018 20:03:09 +0000 (16:03 -0400)]
[emacs/notmuch] bind "e" in notmuch-hello-mode-map
Amin Bandali [Sat, 18 Aug 2018 19:49:05 +0000 (15:49 -0400)]
[rc/i3status] add pulseaudio volume and adjust battery low_threshold
Amin Bandali [Sat, 18 Aug 2018 02:52:28 +0000 (22:52 -0400)]
[emacs] disable time and battery on modeline
Amin Bandali [Fri, 17 Aug 2018 23:05:12 +0000 (19:05 -0400)]
[rc/i3status] customizations
Amin Bandali [Fri, 17 Aug 2018 22:54:41 +0000 (18:54 -0400)]
[rc/{sway,tlp}] add rofi-pass binding, and plasma is now archy
Amin Bandali [Fri, 17 Aug 2018 22:53:10 +0000 (18:53 -0400)]
[rc] switch from i3gs to i3status
Amin Bandali [Fri, 17 Aug 2018 20:38:14 +0000 (16:38 -0400)]
[rc] fix alphabetical order of Configs sections
Amin Bandali [Fri, 17 Aug 2018 20:34:19 +0000 (16:34 -0400)]
[rc] don't tangle some of the scripts I don't use anymore
Amin Bandali [Fri, 17 Aug 2018 17:20:21 +0000 (13:20 -0400)]
[emacs] update 7 drones
lib/dante master
1.4-65-g94c46e8
lib/doom-modeline master
0.3.0-18-g70b1dd3
lib/magit master
2.13.0-168-g716dbaf9
lib/org master release_9
.1.13-897-gab1f7712d
lib/ox-hugo master
v0.8-318-gefbb6ce
lib/projectile master
v1.0.0-21-g35be8e4
lib/proof-site master
v4.4-178-gb7f17b7c
Amin Bandali [Fri, 17 Aug 2018 17:19:25 +0000 (13:19 -0400)]
[emacs,rc] update my gnu address
Amin Bandali [Tue, 14 Aug 2018 17:36:28 +0000 (13:36 -0400)]
[emacs] update 12 drones
lib/closql master
v0.6.0-3-gedb4413
lib/dante master
1.4-62-g45e5c91
lib/doom-modeline master
0.3.0-15-g1adcc1f
lib/ghub master
v2.0.1-26-gcf1a217
lib/helm master
v2.9.8-40-ge3aadd86
lib/ivy master
0.10.0-381-g71cfa9b
lib/magit master
2.13.0-155-gc686f54d
lib/no-littering master
v0.5.14-7-ga8618ec
lib/org master release_9
.1.13-896-g18998fd4c
lib/ox-hugo master
v0.8-316-g5cf5520
lib/projectile master
v1.0.0-14-g9c6e981
lib/proof-site master
v4.4-176-g52d1f920
Amin Bandali [Sat, 11 Aug 2018 00:28:05 +0000 (20:28 -0400)]
[rc/msmtp] update expected tls_fingerprint for nix
updated the cert today
Amin Bandali [Wed, 8 Aug 2018 02:18:07 +0000 (22:18 -0400)]
[rc/zim] update zssh_ids
Amin Bandali [Sun, 5 Aug 2018 05:21:50 +0000 (01:21 -0400)]
[emacs] update 10 drones
lib/borg master
v2.0.0-66-g6270c61
lib/company master
0.9.6-50-g1c76850
lib/doom-modeline master
0.2.0-12-g4729437
lib/exec-path-from-shell master
1.11-24-gd8aa776
lib/flycheck master
31-163-gf6f09194
lib/helm master
v2.9.8-34-g5f747694
lib/ivy master
0.10.0-316-g214664a
lib/magit master
2.13.0-136-ga9c3242e
lib/markdown-mode master
v2.3-193-g74c0a06
lib/ox-hugo master
v0.8-292-g94c57eb
Amin Bandali [Sun, 5 Aug 2018 05:08:17 +0000 (01:08 -0400)]
[rc/zim] use new ssh key
Amin Bandali [Sun, 5 Aug 2018 05:07:20 +0000 (01:07 -0400)]
[rc] use l/ instead of lists/ for nm tags. use gnu address for sr.ht
- use a shorter l/ prefix for tagging mailing list emails
- use my gnu address for lists.sr.ht
- sieve rules for sr.ht lists (thanks iank for help with the regex)
Amin Bandali [Sat, 4 Aug 2018 22:58:42 +0000 (18:58 -0400)]
[rc] add nmam and nmam3 aliases for extracting patches from notmuch
kudos and thanks to @bremner
Amin Bandali [Sat, 4 Aug 2018 22:56:58 +0000 (18:56 -0400)]
[emacs,rc] add my new gnu address
also remove my long uw address, at least for now
Amin Bandali [Sat, 28 Jul 2018 15:03:20 +0000 (11:03 -0400)]
[emacs] update 16 drones
lib/closql master
v0.6.0-2-g3289511
lib/company master
0.9.6-41-g9e8bd0b
lib/dash master
2.14.1-10-g453c775
lib/flycheck master
31-159-g740d6670
lib/general master
6b8f7bc
lib/ghub master
v2.0.1-19-gd83ebae
lib/git-modes master
1.2.7-2-g5546831
lib/helm master
v2.9.8-22-gd5520ebf
lib/ivy master
0.10.0-305-g951560e
lib/magit master
2.13.0-106-g6d72f0ee
lib/magit-popup master v2.12.4
lib/no-littering master
v0.5.14-6-g039b16b
lib/org master release_9
.1.13-894-gf79545f96
lib/ox-hugo master
v0.8-286-g081a4a9
lib/projectile master
v1.0.0-11-gd2b808b
lib/with-editor master v2.7.4
Amin Bandali [Thu, 26 Jul 2018 00:17:12 +0000 (20:17 -0400)]
[rc/sway] add back second argument of floating_modifier
implemented in https://github.com/swaywm/sway/pull/2352
Amin Bandali [Thu, 26 Jul 2018 00:14:34 +0000 (20:14 -0400)]
[rc/i3gs] better spacing
Amin Bandali [Tue, 24 Jul 2018 21:13:58 +0000 (17:13 -0400)]
[rc] add volume-info script for displaying volume in bar
Amin Bandali [Tue, 24 Jul 2018 18:55:10 +0000 (14:55 -0400)]
[rc/battery-percentage-time] drastically improve the script
thanks to @sircmpwn:
https://cmpwn.com/@sir/
100431155990909270
Amin Bandali [Tue, 24 Jul 2018 18:26:05 +0000 (14:26 -0400)]
[rc] disable some i3gs blocks & change battery time/perct. format
Amin Bandali [Mon, 23 Jul 2018 04:47:56 +0000 (00:47 -0400)]
[emacs] remove key-seq and only use key-chord, decrease delay
the delay on j was annoying, even if only 0.075s. switch to key-chord
so order won't matter, and bring delay down to 0.005s.
Amin Bandali [Mon, 23 Jul 2018 04:40:22 +0000 (00:40 -0400)]
[emacs] add "jk" key sequence using key-seq (uses key-chord) for ryo
Amin Bandali [Mon, 23 Jul 2018 04:36:15 +0000 (00:36 -0400)]
[emacs] add more ryo bindings, including some for borg actions
Amin Bandali [Mon, 23 Jul 2018 03:37:46 +0000 (23:37 -0400)]
[rc/sway] launch dunst on start, and swap bspwm & original bindings
depends: dunst
Amin Bandali [Mon, 23 Jul 2018 02:04:28 +0000 (22:04 -0400)]
[rc/sway] uncomment floating_modifier
landed as of https://github.com/swaywm/sway/pull/2296
though, there seems to have been a change of syntax, and the second
argument (normal or inverse) was not implemented (perhaps not yet).
Amin Bandali [Sun, 22 Jul 2018 22:51:32 +0000 (18:51 -0400)]
[emacs] adjust my preferred undo mechanism
have undo tree save history, and leave emacs' undo intact, for cases
when undo tree's history gets corrupt at least i'd have functioning
undo for the changes i made in the current session
Amin Bandali [Sun, 22 Jul 2018 22:01:27 +0000 (18:01 -0400)]
[rc/sway] add volume key bindings
depends: pactl (from pulseaudio) pamixer
Amin Bandali [Sun, 22 Jul 2018 21:39:52 +0000 (17:39 -0400)]
[emacs] add more bindings, from the awesome crux and mwim
Amin Bandali [Sun, 22 Jul 2018 20:39:28 +0000 (16:39 -0400)]
[emacs] enable auto-revert and always use 4 spaces for indentation
Amin Bandali [Sun, 22 Jul 2018 20:27:25 +0000 (16:27 -0400)]
[rc] omit leading 0 from hour, display battery percentage and time
depends: upower awk
Amin Bandali [Sun, 22 Jul 2018 18:54:22 +0000 (14:54 -0400)]
[emacs] more bindings
Amin Bandali [Sun, 22 Jul 2018 18:41:49 +0000 (14:41 -0400)]
[emacs] add more ryo-modal bindings
Amin Bandali [Sun, 22 Jul 2018 17:03:43 +0000 (13:03 -0400)]
[emacs] ditch evil in favour of ryo-modal
also, rebind sway resize from s-r to s-S-r so that it won't clash with
my counsel-recentf binding
Amin Bandali [Sun, 22 Jul 2018 14:55:51 +0000 (10:55 -0400)]
[rc] add i3gs for sway's status_command
depends: i3gs
Amin Bandali [Sun, 22 Jul 2018 14:49:28 +0000 (10:49 -0400)]
[rc/sway] more input customizations
also, use sway-input's xkb_layout and xkb_options instead of env vars
Amin Bandali [Sun, 22 Jul 2018 00:15:30 +0000 (20:15 -0400)]
[rc/sway] add original ws switch / window move keys on Mod1 (alt)
Amin Bandali [Sun, 22 Jul 2018 00:03:04 +0000 (20:03 -0400)]
[rc/sway-ws-util] doc fix
also, forgot to mention that the grandparent commit adds dependency
on jq.
Amin Bandali [Sat, 21 Jul 2018 23:54:32 +0000 (19:54 -0400)]
[rc/sway-ws-util] wrap around on workspace 1 and 10
Amin Bandali [Sat, 21 Jul 2018 23:46:36 +0000 (19:46 -0400)]
[rc/sway] make workspace switch and window moving behave like bspwm
Amin Bandali [Sat, 21 Jul 2018 23:04:02 +0000 (19:04 -0400)]
[rc] add s script for launching sway with customizations
TODO: later might want to check for hostname to decide what to do on
plasma and enigma (currently, i'm only using it on plasma)
Amin Bandali [Sat, 21 Jul 2018 23:02:23 +0000 (19:02 -0400)]
[rc/sway] customize sway inputs to be like my previous setup
i.e. disable touchpad while typing (dwt), enable tap to click, enable
natural scrolling, and enable middle click. also, set keyboard repeat
delay and rate.
Amin Bandali [Sat, 21 Jul 2018 22:56:34 +0000 (18:56 -0400)]
[rc/sway] port some customizations from my previous bspwm setup
prev,next workspace functionality isn't quiet the same (yet)
depends: xorg-xrdb rofi light i3blocks
Amin Bandali [Sat, 21 Jul 2018 20:40:02 +0000 (16:40 -0400)]
[rc/sway] comment out floating_modifier for now (not reimplemented)
report: https://github.com/swaywm/sway/pull/2129
upcoming impl: https://github.com/swaywm/sway/pull/2296
Amin Bandali [Sat, 21 Jul 2018 20:19:52 +0000 (16:19 -0400)]
[rc] add default config for sway and don't tangle bspwm or X configs
from commit
27f65b94
Amin Bandali [Fri, 20 Jul 2018 14:54:35 +0000 (10:54 -0400)]
[rc/notmuch] tag archives of old notmuch and emacs-devel messages
Amin Bandali [Thu, 19 Jul 2018 22:10:10 +0000 (18:10 -0400)]
[emacs] set name, email address, and message fqdn
Amin Bandali [Thu, 19 Jul 2018 22:09:35 +0000 (18:09 -0400)]
[rc/notmuch] shuffle around some tags
Amin Bandali [Thu, 19 Jul 2018 22:07:17 +0000 (18:07 -0400)]
[{emacs,rc}/notmuch] add `latest' tag for newest batch of emails
and bind l on notmuch-hello for tag:latest
Amin Bandali [Thu, 19 Jul 2018 00:56:20 +0000 (20:56 -0400)]
[emacs] update 7 drones
lib/ghub master
v2.0.1-11-g4202c1f
lib/helm master
v2.9.8-8-g9fdbd606
lib/ivy master
0.10.0-288-g944c20d
lib/magit master
2.13.0-89-g76998b5e
lib/org master release_9
.1.13-893-gd975b44fd
lib/ox-hugo master
v0.8-245-ga1a2dbf
lib/use-package master
2.3-402-g3fb8f39
Amin Bandali [Tue, 17 Jul 2018 04:25:39 +0000 (00:25 -0400)]
[emacs] add scaffolding for ox-hugo
Amin Bandali [Tue, 17 Jul 2018 03:07:32 +0000 (23:07 -0400)]
[rc/git] gpg sign commits, and configure send-email
Amin Bandali [Mon, 16 Jul 2018 22:49:09 +0000 (18:49 -0400)]
[emacs/notmuch] set notmuch-message-headers and add link to bug
https://notmuchmail.org/pipermail/notmuch/2018/026781.html
https://www.mail-archive.com/notmuch@notmuchmail.org/msg46658.html
Amin Bandali [Mon, 16 Jul 2018 22:47:14 +0000 (18:47 -0400)]
[emacs] assimilate org (from source)
and bring in org-notmuch from contrib/
Amin Bandali [Mon, 16 Jul 2018 21:51:39 +0000 (17:51 -0400)]
[rc/msmtp] update fencepost's expected tls fingerprint
Amin Bandali [Sun, 15 Jul 2018 21:47:09 +0000 (17:47 -0400)]
[emacs/eink-theme] fork and customize some faces
https://github.com/aminb/eink-emacs
Amin Bandali [Sun, 15 Jul 2018 21:39:51 +0000 (17:39 -0400)]
[emacs] add and switch to eink theme
Amin Bandali [Sun, 15 Jul 2018 21:27:40 +0000 (17:27 -0400)]
[rc/{notmuch,pigeonhole}] update sieve and notmuch rules for lists
Also sort and group things more neatly.
Amin Bandali [Sun, 15 Jul 2018 21:25:25 +0000 (17:25 -0400)]
[emacs] update 11 drones
lib/alloy-mode master
0d05bdd
lib/doom-modeline master
0.2.0-10-g8af6cb7
lib/emacsql master
2.0.2-20-g6f1e375
lib/ghub master
v2.0.1-9-g61c87be
lib/helm master
v2.9.8-6-g75db7c3b
lib/ivy master
0.10.0-281-g93d51d6
lib/lean-mode master
529b8fa
lib/magit master
2.13.0-87-g9b948af9
lib/ox-hugo master
v0.8-243-gca690c4
lib/projectile master
v0.14.0-232-g9a2655e
lib/use-package master
2.3-400-gcfce01b
Amin Bandali [Sun, 15 Jul 2018 03:27:31 +0000 (23:27 -0400)]
[emacs/notmuch] don't insert the two blank lines in the beginning
Amin Bandali [Sun, 15 Jul 2018 00:25:14 +0000 (20:25 -0400)]
[emacs/supercite] add jwiegley's supercite config as a reference
from https://github.com/jwiegley/dot-emacs/blob/
f3dd82ba7fdcd8f63603e7e7a9acb078f70de8fe/dot-gnus.el#L477
Amin Bandali [Sun, 15 Jul 2018 00:20:42 +0000 (20:20 -0400)]
[emacs/org] modern html5 export
Amin Bandali [Sun, 15 Jul 2018 00:17:48 +0000 (20:17 -0400)]
[emacs] replace org-static-blog with ox-hugo
Amin Bandali [Sat, 7 Jul 2018 22:31:10 +0000 (18:31 -0400)]
[emacs] update 2 drones
lib/helm master
v2.9.7-37-gd7106595
lib/markdown-mode master
v2.3-191-gb274cb9
Amin Bandali [Sat, 7 Jul 2018 19:18:24 +0000 (15:18 -0400)]
[emacs] fork tao-theme and add some style changes
Amin Bandali [Sat, 7 Jul 2018 17:32:11 +0000 (13:32 -0400)]
[emacs/notmuch] display more characters of authors
Amin Bandali [Sat, 7 Jul 2018 17:31:52 +0000 (13:31 -0400)]
[emacs] assimilate org-static-blog
Amin Bandali [Sat, 7 Jul 2018 06:22:45 +0000 (02:22 -0400)]
[emacs] update 2 drones
lib/doom-modeline master 0.2.0
lib/helm master
v2.9.7-31-gf9baa2a9
Amin Bandali [Sat, 7 Jul 2018 06:19:55 +0000 (02:19 -0400)]
[emacs] add some header links
Amin Bandali [Sat, 7 Jul 2018 06:12:48 +0000 (02:12 -0400)]
[emacs] remove vestigial EXWM configuration
Amin Bandali [Sat, 7 Jul 2018 02:53:26 +0000 (22:53 -0400)]
[emacs] assimilate doom-modeline and tao-theme (and their deps)
Amin Bandali [Fri, 6 Jul 2018 16:11:16 +0000 (12:11 -0400)]
[emacs] assimilate Proof General (for Coq)
Amin Bandali [Fri, 6 Jul 2018 15:56:35 +0000 (11:56 -0400)]
[emacs/alloy-mode] use indentation offset of 2 (instead of 3)
Amin Bandali [Fri, 6 Jul 2018 15:41:22 +0000 (11:41 -0400)]
[emacs] update 2 drones
lib/helm master
v2.9.7-28-g3de72536
lib/ivy master
0.10.0-273-g92efd62
Amin Bandali [Thu, 5 Jul 2018 01:56:54 +0000 (21:56 -0400)]
[emacs] delete exwm and xelb
I've been back on bspwm for a while, and will kely be switching to
i3wm or swaywm next.
Amin Bandali [Thu, 5 Jul 2018 01:53:03 +0000 (21:53 -0400)]
[emacs] use dwwmmm/alloy-mode instead of anlun/alloy-mode
Amin Bandali [Thu, 5 Jul 2018 01:36:36 +0000 (21:36 -0400)]
[emacs] update 15 drones
lib/borg master
v2.0.0-64-g738f749
lib/closql master v0.6.0
lib/company master
0.9.6-37-g1f836b6
lib/emacsql master
2.0.2-19-g3b70e8f
lib/epkg master v3.1.0
lib/flycheck master
31-156-g0995b0bb
lib/general master
e690ef9
lib/helm master
v2.9.7-21-g40a01d97
lib/hydra master
0.14.0-17-g87cc74b
lib/ivy master
0.10.0-271-g0cf0e6d
lib/magit master
2.13.0-70-g1e2f1686
lib/magit-popup master
v2.12.3-4-ge2060cc
lib/notmuch master debian/
0.27-1-7-gfd3c9365
lib/use-package master
2.3-398-g4f0f585
lib/which-key master
v3.3.0-1-g013cdb7
Some were detached, so I checked out their `master'.
Amin Bandali [Thu, 5 Jul 2018 01:27:48 +0000 (21:27 -0400)]
[emacs] add alloy-mode
Amin Bandali [Wed, 27 Jun 2018 04:30:05 +0000 (00:30 -0400)]
[emacs] some convenience bindings
Amin Bandali [Wed, 27 Jun 2018 04:29:41 +0000 (00:29 -0400)]
[emacs] assimilate hydra
Amin Bandali [Wed, 27 Jun 2018 04:28:21 +0000 (00:28 -0400)]
[emacs] update 2 drones
lib/helm master
v2.9.6-61-gb325a2ac
lib/ivy master
0.10.0-267-g716e151