Created
January 26, 2016 08:01
-
-
Save chrismcg/2eaf51c00b96e8f88012 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
;; from http://www.lunaryorn.com/2015/04/29/the-power-of-display-buffer-alist.html | |
(add-to-list 'display-buffer-alist | |
`(,(rx bos (or | |
"*rspec-compilation*" | |
"*projectile-rails-compilation*" | |
"*Bundler*" | |
"*alchemist test report*" | |
"*alchemist macroexpand*" | |
"*alchemist mix*" | |
"*elixir help*" | |
"*alchemist help*" | |
"*mix*") | |
eos) | |
(display-buffer-reuse-window | |
display-buffer-in-side-window) | |
(reusable-frames . visible) | |
(side . bottom) | |
(window-height . 0.4))) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment