Update to Emacs 24

This commit is contained in:
John Doty 2012-07-02 09:59:40 -07:00
parent 07e254465d
commit f440b0c6aa
18 changed files with 720 additions and 51 deletions

View file

@ -21,6 +21,7 @@
'(c-label-offset -4)
'(fast-lock-cache-directories (quote ("~/flc-cache")))
'(fast-lock-minimum-size nil)
'(fill-column 120)
'(find-file-run-dired t)
'(font-lock-global-modes t)
'(font-lock-maximum-size nil)
@ -174,6 +175,7 @@
;; Text mode configuration.
;; =================================================================
(defun my-text-mode-hook ()
(setq fill-column 70)
(turn-on-auto-fill)
(flyspell-mode))
@ -494,3 +496,14 @@
(autoload 'lua-mode "lua-mode" "Lua editing mode." t)
(add-to-list 'auto-mode-alist '("\\.lua$" . lua-mode))
(add-to-list 'interpreter-mode-alist '("lua" . lua-mode))
;; Column markers
(require 'column-marker)
(custom-set-faces
;; custom-set-faces was added by Custom.
;; If you edit it by hand, you could mess it up, so be careful.
;; Your init file should contain only one such instance.
;; If there is more than one, they won't work right.
)