copr-emacs/default.el
Jens Petersen 883764ae9a - do not setup frame-title-format in default.el, since it will override
setting by users (Henrik Bakken, 134520)
- emacs-el no longer requires emacs for -nox users (Lars Hupfeldt Nielsen,
    134479)
- condition calling global-font-lock-mode in default .emacs in case xemacs
    loads it
2004-10-15 03:02:08 +00:00

17 lines
541 B
EmacsLisp

;;; default.el - loaded after ".emacs" on startup
;;;
;;; Setting `inhibit-default-init' non-nil in "~/.emacs"
;;; prevents loading of this file. Also the "-q" option to emacs
;;; prevents both "~/.emacs" and this file from being loaded at startup.
;; always end a file with a newline
(setq require-final-newline 'query)
(when window-system
;; enable wheelmouse support by default
(mwheel-install)
;; make switching frames works properly under the default click-to-focus
(setq focus-follows-mouse nil))
(auto-compression-mode t)