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