I want to hide the welcome screen.
My .emacs file:
.emacs
(setq c-basic-offset 4) ; indents 4 chars (setq tab-width 4) ; and 4 char wi
Add the following to your $HOME/.emacs:
$HOME/.emacs
(setq inhibit-startup-screen t)
The next time you start Emacs, the welcome screen shouldn't appear. If you already have Emacs open with the welcome screen, you can kill it with C-x k (Control-x, then k).