Skip to content

Instantly share code, notes, and snippets.

@quux00
Created August 18, 2012 00:16
Show Gist options
  • Save quux00/3383577 to your computer and use it in GitHub Desktop.
Save quux00/3383577 to your computer and use it in GitHub Desktop.
Emacs: Show only one buffer on startup
;; Only one window on startup
(add-hook 'emacs-startup-hook 'delete-other-windows t)
;; same thing - longer version
(add-hook 'emacs-startup-hook
(lambda () (delete-other-windows)) t)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment