Release new version 0.19.7
[grml-etc-core.git] / etc / skel / .emacs
1 ;; Filename:      $HOME/.emacs
2 ;; Purpose:       configuration file for Emacs
3 ;; Authors:       grml-team (grml.org), (c) Michael Prokop <mika@grml.org>
4 ;; Bug-Reports:   see http://grml.org/bugs/
5 ;; License:       This file is licensed under the GPL v2.
6 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
7
8 ;; Activate UTF-8 mode:
9   (setq locale-coding-system 'utf-8)
10   (set-terminal-coding-system 'utf-8)
11   (set-keyboard-coding-system 'utf-8)
12   (set-selection-coding-system 'utf-8)
13   (prefer-coding-system 'utf-8)
14
15 ;; END OF FILE ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;