Add /etc/skel/.emacs which enables UTF-8 mode by default.
[grml-etc-core.git] / etc / skel / .emacs
diff --git a/etc/skel/.emacs b/etc/skel/.emacs
new file mode 100644 (file)
index 0000000..fe884a8
--- /dev/null
@@ -0,0 +1,16 @@
+;; Filename:      $HOME/.emacs
+;; Purpose:       configuration file for Emacs
+;; Authors:       grml-team (grml.org), (c) Michael Prokop <mika@grml.org>
+;; Bug-Reports:   see http://grml.org/bugs/
+;; License:       This file is licensed under the GPL v2.
+  ;; Latest change: Son Mai 13 00:13:58 CEST 2007 [mika]
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
+
+;; Activate UTF-8 mode:
+  (setq locale-coding-system 'utf-8)
+  (set-terminal-coding-system 'utf-8)
+  (set-keyboard-coding-system 'utf-8)
+  (set-selection-coding-system 'utf-8)
+  (prefer-coding-system 'utf-8)
+
+;; END OF FILE ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;