Commit 17749bcea141

Vincent Demeester <vincent@sbr.pm>
2015-05-17 20:50:54
Add popwin
1 parent e09c187
Changed files (1)
.emacs.d
.emacs.d/emacs.org
@@ -991,6 +991,26 @@
     #+END_SRC
 
 
+*** Popwin
+
+    #+BEGIN_QUOTE
+    popwin is a popup window manager for Emacs which makes you free
+    from the hell of annoying buffers such like *Help*, *Completions*,
+    *compilation*, and etc.
+    #+END_QUOTE
+
+    That says it all, it's kind of a must.
+
+
+    #+BEGIN_SRC emacs-lisp
+      (use-package popwin
+        :ensure t
+        :config
+        (progn
+          (global-set-key (kbd "C-z") popwin:keymap)))
+    #+END_SRC
+
+
 *** Ace jump
 
     #+BEGIN_SRC emacs-lisp