-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcustom.el
43 lines (40 loc) · 1.67 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
(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-command-style
'(("" "%(PDF)%(latex) -shell-escape %(file-line-error) %(extraopts) %S%(PDFout)")))
'(ansi-color-names-vector
["#242424" "#e5786d" "#95e454" "#cae682" "#8ac6f2" "#333366" "#ccaa8f" "#f6f3e8"])
'(haskell-mode-hook '(turn-on-haskell-indentation))
'(package-selected-packages
'(diminish vagrant-tramp yaml-mode which-key undo-tree multiple-cursors highlight-indent-guides helm-swoop helm expand-region ace-jump-mode ido-vertical-mode docker-tramp php-mode ini-mode idris-mode ensime haskell-mode elpy langtool bash-completion scratch powerline use-package))
'(python-indent-offset 4)
'(python-shell-interpreter "python3"))
;; Default face
(set-face-attribute 'default nil
:inherit nil
:stipple nil
:background "#2D3743"
:foreground "#F8F8F8"
:inverse-video nil
:box nil
:strike-through nil
:overline nil
:underline nil
:slant 'normal
:weight 'normal
:height 113
:width 'normal
:foundry "unknown"
:family "DejaVu Sans Mono")
(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.
'(comint-highlight-prompt ((t (:foreground "green"))))
'(minibuffer-prompt ((t (:foreground "green"))))
'(term-color-blue ((t (:background "#008B8B" :foreground "#008B8B"))))
'(term-color-red ((t (:background "tomato" :foreground "tomato")))))