diff --git a/README.md b/README.md
index b683df1..6b66d22 100644
--- a/README.md
+++ b/README.md
@@ -53,22 +53,6 @@ Do not introduce trailing whitespace.
Do not introduce lines longer than 80 characters.
-### Indentation
-
-To have consistent indentation we have vi modeline/emacs local variable
-headers in rebar's source files. This works automatically with vi.
-With Emacs you have to declare 'erlang-indent-level
-set to 4
-as a safe local variable value. If not configured Emacs will prompt
-you to save this as part of custom-set-variables:
-
- '(safe-local-variable-values (quote ((erlang-indent-level . 4))))
-You can also tell Emacs to ignore file variables:
-
- (setq enable-local-variables nil
- enable-local-eval nil)
-
-
Writing Commit Messages
-----------------------