4b3074962a3fa3278918da0ccfc9855f1182800b
[emacs-init.git] / .emacs
1 (add-to-list 'load-path "~/.emacs.d")
2 (add-to-list 'load-path "~/.emacs.d/auto-install")
3
4 (require 'load-dir)
5 (load-dir "~/.emacs.d/setup")
6
7 (custom-set-variables
8  ;; custom-set-variables was added by Custom.
9  ;; If you edit it by hand, you could mess it up, so be careful.
10  ;; Your init file should contain only one such instance.
11  ;; If there is more than one, they won't work right.
12  '(auto-install-install-confirm nil)
13  '(auto-install-replace-confirm nil)
14  '(auto-install-save-confirm nil)
15  '(auto-save-file-name-transforms (quote (("\\`.*\\([^/]*\\)\\'" "~/.emacs.d/autosave/\\1" t))))
16  '(backup-directory-alist (quote (("." . "~/.emacs.d/backups"))))
17  '(c-backslash-column 99)
18  '(c-basic-offset 4)
19  '(column-number-mode t)
20  '(comment-column 60)
21  '(comment-fill-column 160)
22  '(csv-align-padding 0)
23  '(csv-comment-start-default "#")
24  '(csv-field-quotes nil)
25  '(csv-header-lines 0)
26  '(csv-separators (quote ("|")))
27  '(debug-on-error nil)
28  '(default-input-method "latin-1-prefix")
29  '(fill-column 98)
30  '(flyspell-delay 10)
31  '(global-auto-revert-mode nil)
32  '(global-subword-mode t)
33  '(global-visual-line-mode t)
34  '(global-whitespace-mode nil)
35  '(ido-mode (quote both) nil (ido))
36  '(ispell-extra-args (quote ("--sug-mode=ultra")))
37  '(ispell-program-name "c:/cygwin/bin/aspell.exe")
38  '(ls-lisp-dirs-first t)
39  '(nxml-where-global-mode t)
40  '(nxml-where-header nil)
41  '(pop-up-windows nil)
42  '(save-place t nil (saveplace))
43  '(server-done-hook (quote (delete-frame)))
44  '(server-mode t)
45  '(server-temp-file-regexp "^/tmp/Re\\|/draft\\|.*/itsalltext/.*$")
46  '(server-window (quote switch-to-buffer-other-frame))
47  '(show-paren-mode t)
48  '(tab-width 4)
49  '(tags-case-fold-search nil)
50  '(tool-bar-mode nil)
51  '(uniquify-buffer-name-style (quote forward) nil (uniquify))
52  '(visual-line-fringe-indicators (quote (left-curly-arrow right-curly-arrow)))
53  '(which-function-mode t))
54 (custom-set-faces
55  ;; custom-set-faces was added by Custom.
56  ;; If you edit it by hand, you could mess it up, so be careful.
57  ;; Your init file should contain only one such instance.
58  ;; If there is more than one, they won't work right.
59  '(default ((t (:inherit nil :stipple nil :background "SystemWindow" :foreground "SystemWindowText" :inverse-video nil :box nil :strike-through nil :overline nil :underline nil :slant normal :weight normal :height 90 :width normal :foundry "outline" :family "Courier New"))))
60  '(textile-acronym-face ((t (:foreground "medium blue"))))
61  '(textile-blockquote-face ((t (:foreground "midnight blue"))))
62  '(textile-code-face ((t (:foreground "firebrick4"))))
63  '(textile-pre-face ((t (:foreground "dark green")))))
64 (put 'narrow-to-region 'disabled nil)