Dr. Werner Fink 2015-11-27 14:13:56 +00:00 committed by Git OBS Bridge
parent fed551f254
commit b2f4171804

View File

@ -20,7 +20,26 @@
;; Enable mouse wheel support
;;
(mwheel-install)
(when window-system
(mwheel-install))
;; Let gnus save articles in mbox format
(defvar gnus-default-article-saver 'gnus-summary-save-in-file)
;; This system use terminfo
(defvar system-uses-terminfo t)
;; Syntax highlighting
(when (fboundp 'turn-on-lazy-lock)
(require 'font-lock)
;; use lazy-lock by default if lazy-shot is not enabled
(remove-hook 'font-lock-mode-hook 'turn-on-lazy-lock)
(add-hook 'font-lock-mode-hook
(function
(lambda ()
(unless (and (boundp 'lazy-shot-mode) lazy-shot-mode)
(turn-on-lazy-lock))))
t))
;;
;; i18n setup (encoding, language-environment, ...)