-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcustom.el
54 lines (54 loc) · 2.58 KB
/
custom.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
(custom-set-variables
;; custom-set-variables was added by Custom.
;; If you edit it by hand, you could mess it up, so be careful.
;; Your init file should contain only one such instance.
;; If there is more than one, they won't work right.
'(LaTeX-math-abbrev-prefix "ß")
'(TeX-auto-save t)
'(TeX-newline-function (quote newline-and-indent))
'(TeX-output-view-style
(quote
(("^dvi$"
("^landscape$" "^pstricks$\\|^pst-\\|^psfrag$")
"%(o?)dvips -t landscape %d -o && gv %f")
("^dvi$" "^pstricks$\\|^pst-\\|^psfrag$" "%(o?)dvips %d -o && gv %f")
("^dvi$"
("^\\(?:a4\\(?:dutch\\|paper\\|wide\\)\\|sem-a4\\)$" "^landscape$")
"%(o?)xdvi %dS -paper a4r -s 0 %d")
("^dvi$" "^\\(?:a4\\(?:dutch\\|paper\\|wide\\)\\|sem-a4\\)$" "%(o?)xdvi %dS -paper a4 %d")
("^dvi$"
("^\\(?:a5\\(?:comb\\|paper\\)\\)$" "^landscape$")
"%(o?)xdvi %dS -paper a5r -s 0 %d")
("^dvi$" "^\\(?:a5\\(?:comb\\|paper\\)\\)$" "%(o?)xdvi %dS -paper a5 %d")
("^dvi$" "^b5paper$" "%(o?)xdvi %dS -paper b5 %d")
("^dvi$" "^letterpaper$" "%(o?)xdvi %dS -paper us %d")
("^dvi$" "^legalpaper$" "%(o?)xdvi %dS -paper legal %d")
("^dvi$" "^executivepaper$" "%(o?)xdvi %dS -paper 7.25x10.5in %d")
("^dvi$" "." "%(o?)xdvi %dS -watchfile 1 -s 5 -geometry 2000x2000 %d")
("^pdf$" "." "xpdf -remote %s -raise %o %(outpage)")
("^html?$" "." "netscape %o"))))
'(calendar-date-style (quote european))
'(calendar-week-start-day 1)
'(confirm-kill-emacs (quote y-or-n-p))
'(display-time-24hr-format t)
'(flycheck-check-syntax-automatically (quote (save mode-enabled)))
'(font-latex-fontify-sectioning (quote color))
'(mixfmt-mix "/usr/local/bin/mix")
'(org-agenda-files (quote ("~/Dokumente/pageflow.org")))
'(package-selected-packages
(quote
(color-theme company tide prettier-js flycheck-flow web-mode scss-mode rspec-mode multi-term markdown-mode json-mode js2-mode flycheck exec-path-from-shell enh-ruby-mode elixir-mode)))
'(prettier-js-args (quote ("--single-quote")))
'(rspec-spec-command "bin/rspec")
'(rspec-use-bundler-when-possible nil)
'(rspec-use-rake-when-possible nil)
'(rspec-use-spring-when-possible nil)
'(safe-local-variable-values (quote ((TeX-master . paper))))
'(smerge-command-prefix "m")
'(toggle-mapping-style (quote teaspoon)))
(custom-set-faces
;; custom-set-faces was added by Custom.
;; If you edit it by hand, you could mess it up, so be careful.
;; Your init file should contain only one such instance.
;; If there is more than one, they won't work right.
'(flycheck-warning ((t (:underline (:color "gold" :style wave))))))