ca23ad5e2609b0923ed9736d12a15c0d3b2ebf70
[~bandali/configs] / etc / 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 '(auth-sources '("~/.authinfo.gpg"))
7 '(company-dabbrev-char-regexp "\\sw\\|\\s_\\|[-_]")
8 '(company-dabbrev-downcase nil)
9 '(company-dabbrev-ignore-case nil)
10 '(company-idle-delay 0.3)
11 '(company-minimum-prefix-length 1)
12 '(company-selection-wrap-around t)
13 '(ibuffer-formats
14 '((mark modified read-only locked " "
15 (name 18 18 :left :elide)
16 " "
17 (size-h 9 -1 :right)
18 " "
19 (mode 16 16 :left :elide)
20 " " filename-and-process)
21 (mark " "
22 (name 16 -1)
23 " " filename)))
24 '(ibuffer-saved-filter-groups
25 '(("default"
26 ("dired"
27 (mode . dired-mode))
28 ("org"
29 (mode . org-mode))
30 ("web"
31 (or
32 (mode . web-mode)
33 (mode . css-mode)
34 (mode . scss-mode)
35 (mode . js2-mode)))
36 ("shell"
37 (or
38 (mode . eshell-mode)
39 (mode . shell-mode)))
40 ("notmuch"
41 (name . "*notmuch*"))
42 ("programming"
43 (or
44 (mode . python-mode)
45 (mode . c++-mode)
46 (mode . emacs-lisp-mode)))
47 ("emacs"
48 (or
49 (name . "^\\*scratch\\*$")
50 (name . "^\\*Messages\\*$")))
51 ("slack"
52 (or
53 (name . "^\\*Slack*"))))))
54 '(org-latex-packages-alist '(("" "listings") ("" "color")))
55 '(safe-local-variable-values
56 '((eval add-hook 'after-save-hook 'org-beamer-export-to-latex t t)
57 (eval setq org-latex-prefer-user-labels t)
58 (eval add-hook 'after-save-hook 'org-latex-export-to-latex t t)
59 (org-hugo-footer . "
60
61 [//]: # \"Exported with love from a post written in Org mode\"
62 [//]: # \"- https://ox-hugo.scripter.co\"")
63 (eval add-hook 'after-save-hook #'amin/async-babel-tangle 'append 'local))))
64 (custom-set-faces
65 ;; custom-set-faces was added by Custom.
66 ;; If you edit it by hand, you could mess it up, so be careful.
67 ;; Your init file should contain only one such instance.
68 ;; If there is more than one, they won't work right.
69 '(dired-directory ((t (:weight semi-bold))))
70 '(font-lock-comment-face ((t (:foreground "#111111" :weight semi-bold))))
71 '(ivy-minibuffer-match-face-2 ((t (:background "#e99ce8" :weight semi-bold))))
72 '(ivy-minibuffer-match-face-3 ((t (:background "#bbbbff" :weight semi-bold))))
73 '(ivy-minibuffer-match-face-4 ((t (:background "#ffbbff" :weight semi-bold))))
74 '(magit-diff-file-heading ((t (:weight normal))))
75 '(message-header-cc ((t (:foreground "#333" :weight normal))))
76 '(message-header-subject ((t (:foreground "navy blue" :weight semi-bold))))
77 '(message-header-to ((t (:foreground "MidnightBlue" :weight semi-bold))))
78 '(notmuch-search-unread-face ((t (:weight semi-bold))))
79 '(notmuch-tag-face ((t (:foreground "navy blue" :weight semi-bold))))
80 '(widget-button ((t (:weight semi-bold)))))