; Load useful customizations
(load "wtk_common.el")
(load "wtk_centralized_backups.el")
+(load "wtk_utf-8.el")
(load "wtk_layout.el")
+(load "wtk_aspell.el")
(load "wtk_epa.el")
(load "wtk_org.el")
+(load "wtk_no-vc.el")
+
+(require 'cython-mode)
+
+; Play GNU Go in an emacs buffer
+;(require 'gnugo)
; Load querty.el, for switching keyboard mappings.
;(load "querty.el")
--- /dev/null
+;;; Set up spell-checking with aspell
+;; http://aspell.net/man-html/Using-Aspell-with-other-Applications.html
+;; http://www.delorie.com/gnu/docs/emacs/emacs_109.html
+(setq-default ispell-program-name "aspell")
+(global-set-key "\C-xs" 'ispell)
+;; http://newsgroups.derkeiler.com/Archive/Comp/comp.emacs/2006-03/msg00005.html
+;; http://blog.infion.de/archives/2007/07/09/GNU-Emacs,-aspell-and-the-problem-with-encodings/
+(eval-after-load 'ispell
+ '(when ispell-aspell-supports-utf8
+ (setq ispell-extra-args
+ (append ispell-extra-args '("--encoding" "none")))))
--- /dev/null
+;;; Set up keyboard encoding for utf-8 (Emacs 21.4.1 trouble parsing LANG?)
+;; http://www.gnu.org/software/emacs/manual/html_node/emacs/Terminal-Coding.html#Terminal-Coding
+(set-keyboard-coding-system 'utf-8)