Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

@starenka
Created August 13, 2014 20:39
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 starenka/906b589144a4a75cba23 to your computer and use it in GitHub Desktop.
Save starenka/906b589144a4a75cba23 to your computer and use it in GitHub Desktop.
(defun epic-split ()
"[x|x + term]"
(interactive)
(delete-other-windows)
(split-window-vertically (floor (* 0.75 (window-height))))
(split-window-right (floor (* 0.5 (window-width))))
(other-window 2)
(get-term)
(other-window 1))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment