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