chiark / gitweb /
some git gui thing found on zealot
[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  '(display-buffer-reuse-frames t)
17  '(font-use-system-font t)
18  '(inhibit-startup-screen t)
19  '(send-mail-function (quote sendmail-send-it)))
20 (custom-set-faces
21  ;; custom-set-faces was added by Custom.
22  ;; If you edit it by hand, you could mess it up, so be careful.
23  ;; Your init file should contain only one such instance.
24  ;; If there is more than one, they won't work right.
25  )
26 (setq load-path (append '("~/emacs") load-path))
27 (load-library "ian")
28 (menu-bar-mode -1)
29 (put 'dired-find-alternate-file 'disabled nil)
30 (let ((ian-local (locate-library "ian-local")))
31   (if ian-local
32         (load-library ian-local)))