-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy patharthur-autoload.el
77 lines (56 loc) · 3.05 KB
/
arthur-autoload.el
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
;; This file is for autoloads and other related stuff that would
;; otherwise go in my .emacs but isn't really configuration and just
;; clogs things up.
(autoload 'hexcolor-mode "hexcolor" "fontify color names in their color" t)
(autoload 'facecolor-mode "hexcolor" "fontify face names in their color" t)
(autoload 'htmlize-buffer "htmlize" nil t)
(autoload 'htmlize-region "htmlize" nil t)
(autoload 'gnugo "gnugo" "Play Go" t)
(autoload 'analog-clock "analog-clock" "display an analog clock" t)
;; (let-alias ((message format))
;; (when (load "~/.emacs.d/ess-5.3.6/lisp/ess-site.el" t t) ; r (ESS)
;; (ess-restore-asm-extns)
;; (kill-buffer "*ESS*")))
(autoload 'javascript-mode "javascript" nil t)
(add-to-list 'auto-mode-alist '("\\.js\\'" . javascript-mode))
;(load "auctex" t t)
;(load "preview-latex" t t)
;(load "dictionary-init" t t)
(autoload 'markdown-mode "markdown-mode" "Major mode for editing Markdown files" t)
(autoload 'markdown-latex-mode "markdown-mode" "Major mode for editing Markdown latex files" t)
(autoload 'flymake-extra-enable "flymake-extra" "Turn on flymake" t)
;; (autoload 'visible-lines-mode "visible-lines" "line oriented movements" t)
(autoload 'rfc2047-decode-string "rfc2047")
(autoload 'rfc2047-decode-region "rfc2047")
(autoload 'hippie-help "hippie-help" "Intelligently display help for the thing at point." t)
(autoload 'hippie-goto "hippie-help" "Intelligently goto the thing at point." t)
(autoload 'hippie-eldoc "hippie-help" "Eldoc using hippie help keybindings" t)
(autoload 'hippie-help-mode "hippie-help" "keybindings for hippie help" t)
;; (autoload 'js2-mode "js2" nil t)
;; (add-to-list 'auto-mode-alist '("\\.js$" . js2-mode))
;; (ignore-errors
;; (require 'eye nil t)
;; (add-to-list 'auto-mode-alist (cons eye-image-type-regexp 'eye-mode))
;; (mapc (lambda (x)
;; (unless (or (string-match-p "html" (car x))
;; (string-match-p "http" (car x)))
;; (add-to-list 'auto-mode-alist (cons (car x) 'eye-mode))))
;; eye-backend-alist)
;; (add-to-list 'magic-fallback-mode-alist (cons 'image-type-auto-detected-p 'eye-mode)))
(autoload 'u-mandelbrot "u-mandelbrot" "A simple fractal browser" t)
(autoload 'mandelbrot "u-mandelbrot" "A simple fractal browser" t)
(autoload 'glsl-mode "glsl-mode" nil t)
(add-to-list 'auto-mode-alist '("\\.glsl\\'" . glsl-mode))
(add-to-list 'auto-mode-alist '("\\.vert\\'" . glsl-mode))
(add-to-list 'auto-mode-alist '("\\.frag\\'" . glsl-mode))
(add-to-list 'auto-mode-alist '("\\.geom\\'" . glsl-mode))
(autoload 'hlsl-mode "hlsl-mode" nil t)
(add-to-list 'auto-mode-alist '("\\.fx\\'" . hlsl-mode))
(add-to-list 'auto-mode-alist '("\\.hlsl\\'" . hlsl-mode))
(autoload 'eye "eye" "View images or comicbooks." t)
(autoload 'global-pretty-mode "pretty-mode" "pretty symbols" t)
(autoload 'pretty-mode "pretty-mode" "pretty symbols" t)
(autoload 'graphviz-dot-mode "graphviz-dot-mode" nil t)
(add-to-list 'auto-mode-alist '("\\.dot\\'" . graphviz-dot-mode))
(add-to-list 'auto-mode-alist '("\\.gv\\'" . graphviz-dot-mode))
(provide 'arthur-autoload)