Skip to content

Instantly share code, notes, and snippets.

@hiredman
Created July 24, 2020 15:58
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 hiredman/d4c507478430274ccf07de735632454a to your computer and use it in GitHub Desktop.
Save hiredman/d4c507478430274ccf07de735632454a to your computer and use it in GitHub Desktop.
(delete-other-windows)
(let* ((left-window (selected-window))
(right-top-window (split-window-right))
(_ (select-window right-top-window))
(right-bottom-window (split-window-below)))
(progn
(select-window left-window)
(find-file "~/src/thursday/thursday.clj")
(select-window right-top-window)
(find-file "~/src/thursday/thursday.js")
(select-window right-bottom-window)
(eshell)
(select-window left-window)))
(set-frame-parameter (selected-frame) 'alpha '(100 . 100))
(set-frame-parameter (selected-frame) 'alpha '(85 . 50))
(if (or (= 2558 (frame-pixel-width))
(= 260 (frame-pixel-width)))
(set-frame-font "-IBM -IBM Plex Mono-normal-normal-normal-*-16-*-*-*-m-0-iso10646-1")
(set-frame-font "-IBM -IBM Plex Mono-normal-normal-normal-*-12-*-*-*-m-0-iso10646-1"))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment