Emacs is a big complicated beast. You can spend lots of time looking through the documentation, but sometimes it’s nice to enjoy a quick bite of Emacs goodness.
Table of Contents:
1: Custom Keystrokes
2: Indenting only as far as you feel comfortable
3: Indentation on steroids
4: Colorful shells
5: Colorful men
6: No more beeping, only flashing
7: Turn off annoying menu bar
8: Customizing font appearance
9: Line wrapping on horizontally split windows
10: Normal looking line wraps
11: Auto backup a little smarter
12: Autocomplete
13: Jumping the line
14: Moving from one window to the other easilly
15: Delete the entire word
16: Enabling the Num Pad
17: Making and storing macros
18: Word Count
Make your own custom keystrokes.
Morsel 2 – Indenting only as far as you feel comfortable
Change the indentation rules in cc-mode to as many spaces as you want (I use 4, which looks like normal tabs on other editors, some people use 8, or 2, or whatever).
Edit your .emacs.d/init.el (depending it could be ~/.emacs, ~/.emacs.el, or ~/.emacs.d/init.el) like this (substitute the number you want where I write 4):
-
;; define indents as 4 spaces in cc-mode
-
(setq c-basic-offset 4
-
tab-width 4
-
indent-tabs-mode t)

