Skip to content

Instantly share code, notes, and snippets.

@cabo
Created September 30, 2010 21:50
Show Gist options
  • Save cabo/605385 to your computer and use it in GitHub Desktop.
Save cabo/605385 to your computer and use it in GitHub Desktop.
Making Emacs German-friendly
(set-language-info-alist
"German8" '((tutorial . "TUTORIAL.de")
(charset unicode)
(coding-system utf-8 iso-latin-1 iso-latin-9)
(coding-priority utf-8 iso-latin-1)
(nonascii-translation . iso-8859-1)
(input-method . "german-postfix")
(unibyte-display . iso-latin-1)
(sample-text . "\
German (Deutsch Nord) Guten Tag
German (Deutsch Süd) Grüß Gott")
(documentation . "\
This language environment is a hacked Latin-1,
but sets the default input method to \"german-postfix\".
Additionally, it selects the German tutorial."))
'("European"))
(custom-set-variables
;; ...
'(current-language-environment "German8")
;; ...
)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment