Skip to content

Instantly share code, notes, and snippets.

@tonini
Last active August 29, 2015 14:27
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save tonini/0d3f9433b214044a870e to your computer and use it in GitHub Desktop.
Save tonini/0d3f9433b214044a870e to your computer and use it in GitHub Desktop.
;; Display alchemist buffers always at the right side
;; Just change (side . right) with the position you would like 'bottom, 'top, 'right or 'left
;; Source: http://www.lunaryorn.com/2015/04/29/the-power-of-display-buffer-alist.html
(add-to-list 'display-buffer-alist
`(,(rx bos (or "*alchemist test report*"
"*alchemist mix*"
"*alchemist help*"))
(display-buffer-reuse-window
display-buffer-in-side-window)
(reusable-frames . visible)
(side . right)
(window-width . 0.5)))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment