Hiding Emacs interface elements
I like to see as many lines as possible, so I hide the bits of Emacs that I don’t use.
;; Turn off menu bar, tool bar, and scroll bar.
(if (fboundp 'menu-bar-mode) (menu-bar-mode -1))
(if (fboundp 'tool-bar-mode) (tool-bar-mode -1))
(if (fboundp 'scroll-bar-mode) (scroll-bar-mode -1))
;; Turn off the splash screen.
(setq inhibit-startup-message t)