emacs/dotemacs.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

16 lines
383 B
EmacsLisp

;; .emacs
;;; uncomment this line to disable loading of "default.el" at startup
;; (setq inhibit-default-init t)
;; turn on font-lock mode
(when (fboundp 'global-font-lock-mode)
(global-font-lock-mode t))
;; enable visual feedback on selections
;(setq transient-mark-mode t)
;; default to better frame titles
(setq frame-title-format
(concat "%b - emacs@" system-name))