Commit 2f2ecffdd808

Vincent Demeester <vincent@sbr.pm>
2015-11-11 20:17:40
Add emacs-bpr
1 parent 781f044
Changed files (1)
.emacs.d
.emacs.d/emacs.org
@@ -721,7 +721,7 @@
     #+END_SRC
 
 
-*** Async
+*** Async & bacground
 
    =async.el= is a module for doing asynchronous processing in
    Emacs. Let's load it as it's gonna be useful. Let's also load
@@ -736,6 +736,19 @@
        (dired-async-mode 1))
    #+END_SRC
 
+   =bpr= from ilya babanov provides a way to do asynchronuous
+   processing in Emacs but with style and output.
+
+
+   #+BEGIN_SRC emacs-lisp
+     (use-package bpr
+       :ensure t
+       :init (progn
+               (setq bpr-colorize-output t)
+               (setq bpr-close-after-success t)))
+   #+END_SRC
+
+
 *** Dired
 
     Dired is really a cool mode, let's enhance it.