Skip to content

Instantly share code, notes, and snippets.

@chrismcg
Created September 23, 2015 12:43
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save chrismcg/a5ba7c97e85c713ba9b8 to your computer and use it in GitHub Desktop.
Save chrismcg/a5ba7c97e85c713ba9b8 to your computer and use it in GitHub Desktop.
;; 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 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