-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcustom.el
77 lines (77 loc) · 3.28 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
;; Do not write anything past this comment. This is where Emacs will
;; auto-generate custom variable definitions.
(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.
'(ahs-case-fold-search nil t)
'(command-log-mode-window-size 50)
'(company-dabbrev-minimum-length 3)
'(company-dabbrev-other-buffers nil)
'(company-show-numbers t)
'(company-statistics-auto-restore nil)
'(ctags-update-delay-seconds 1024)
'(erc-nick "fri3nds")
'(erc-port 6666)
'(evil-want-C-i-jump t)
'(evil-want-Y-yank-to-eol t)
'(exec-path-from-shell-arguments '("-l"))
'(expand-region-contract-fast-key "V")
'(expand-region-exclude-text-mode-expansions '(html-mode nxml-mode web-mode))
'(expand-region-reset-fast-key "r")
'(git-gutter+-added-sign " ")
'(git-gutter+-deleted-sign " ")
'(git-gutter+-modified-sign " ")
'(git-gutter+-window-width 6)
'(git-gutter:update-interval 0)
'(global-command-log-mode nil)
'(helm-buffer-max-length 56)
'(helm-move-to-line-cycle-in-source t)
'(ivy-height 18)
'(lua-documentation-url "http://www.lua.org/manual/5.3/manual.html")
'(magit-use-overlays nil)
'(only-global-abbrevs t)
'(org-agenda-custom-commands nil)
'(org-agenda-ndays 1)
'(org-agenda-show-all-dates t)
'(org-agenda-skip-deadline-if-done t)
'(org-agenda-skip-deadline-prewarning-if-scheduled t)
'(org-agenda-skip-scheduled-if-done t)
'(org-agenda-start-on-weekday nil)
'(org-agenda-text-search-extra-files '(agenda-archives))
'(org-deadline-warning-days 14)
'(org-fast-tag-selection-single-key 'expert)
'(org-log-into-drawer t)
'(org-pomodoro-play-sounds nil)
'(org-reverse-note-order t)
'(package-selected-packages
'())
'(paradox-github-token t)
'(ring-bell-function 'ignore)
'(sp-show-pair-from-inside t)
'(tags-revert-without-query t)
'(tramp-syntax 'default nil (tramp))
'(vc-follow-symlinks t)
'(web-mode-markup-indent-offset 2)
'(ycmd-extra-conf-handler 'load))
(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.
'(ahs-definition-face ((t (:foreground "#d33682" :slant normal :weight bold))))
'(ahs-face ((t (:foreground "#d33682" :weight bold))))
'(command-log-command ((t (:foreground "dark magenta"))))
'(command-log-key ((t (:foreground "dark cyan"))))
'(company-tooltip-common ((t (:inherit company-tooltip :weight bold :underline nil))))
'(company-tooltip-common-selection ((t (:inherit company-tooltip-selection :weight bold :underline nil))))
'(iedit-occurrence ((t (:inherit cursor))))
'(ivy-virtual ((t (:background "skyblue"))))
'(js2-external-variable ((t (:foreground "plum3"))))
'(mc/cursor-bar-face ((t (:background "chartreuse3"))))
'(show-paren-match ((t (:background "dark gray" :foreground "#d33682" :weight bold))))
'(sp-show-pair-match-face ((t (:background "#272822" :foreground "gray" :inverse-video t :weight normal))))
'(web-mode-current-element-highlight-face ((t (:background "dark gray")))))
;; Do not write anything past this comment. This is where Emacs will
;; auto-generate custom variable definitions.