chiark / gitweb /
e696b6ac7de329ccbe8cc27829ca954abb9a40f8
[ian-dotfiles.git] / dot / emacs
1 ; Ian Jackson's Emacs startup file - runs ~ian/emacs/ian.el
2 ;
3
4 ;; Added by Package.el.  This must come before configurations of
5 ;; installed packages.  Don't delete this line.  If you don't want it,
6 ;; just comment it out by adding a semicolon to the start of the line.
7 ;; You may delete these explanatory comments.
8 (package-initialize)
9
10 (custom-set-variables
11  ;; custom-set-variables was added by Custom.
12  ;; If you edit it by hand, you could mess it up, so be careful.
13  ;; Your init file should contain only one such instance.
14  ;; If there is more than one, they won't work right.
15  '(blink-cursor-mode nil)
16  '(font-use-system-font t)
17  '(inhibit-startup-screen t)
18  '(send-mail-function (quote sendmail-send-it)))
19 (custom-set-faces
20  ;; custom-set-faces was added by Custom.
21  ;; If you edit it by hand, you could mess it up, so be careful.
22  ;; Your init file should contain only one such instance.
23  ;; If there is more than one, they won't work right.
24  )
25 (setq load-path (append '("~/emacs") load-path))
26 (load-library "ian")
27 (menu-bar-mode -1)
28 (put 'dired-find-alternate-file 'disabled nil)
29 (let ((ian-local (locate-library "ian-local")))
30   (if ian-local
31         (load-library ian-local)))