chiark / gitweb /
emacs: inhibit-startup-screen
[ian-dotfiles.git] / dot / emacs
1 ; Ian Jackson's Emacs startup file - runs ~ian/emacs/ian.el
2 ;
3 (custom-set-variables
4  ;; custom-set-variables was added by Custom.
5  ;; If you edit it by hand, you could mess it up, so be careful.
6  ;; Your init file should contain only one such instance.
7  ;; If there is more than one, they won't work right.
8  '(blink-cursor-mode nil)
9  '(font-use-system-font t)
10  '(inhibit-startup-screen t)
11  '(send-mail-function (quote sendmail-send-it)))
12 (custom-set-faces
13  ;; custom-set-faces was added by Custom.
14  ;; If you edit it by hand, you could mess it up, so be careful.
15  ;; Your init file should contain only one such instance.
16  ;; If there is more than one, they won't work right.
17  )
18 (setq load-path (append '("~/emacs") load-path))
19 (load-library "ian")
20 (menu-bar-mode -1)
21 (put 'dired-find-alternate-file 'disabled nil)
22 (let ((ian-local (locate-library "ian-local")))
23   (if ian-local
24         (load-library ian-local)))