emacs: some mm-related gnus tweaks and custom-file updates
[~bandali/configs] / .emacs.d / 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-minimum-prefix-length 1)
11 '(company-selection-wrap-around t)
12 '(ebdb-gnus-window-configuration
13 '(article
14 (vertical 1.0
15 (summary 0.25 point)
16 (horizontal 1.0
17 (article 1.0)
18 (ebdb-gnus 0.3)))))
19 '(ediff-split-window-function 'split-window-horizontally t)
20 '(ediff-window-setup-function 'ediff-setup-windows-plain t)
21 '(erc-fill-function 'erc-fill-static)
22 '(erc-fill-static-center 18)
23 '(erc-join-buffer 'bury)
24 '(erc-lurker-hide-list '("JOIN" "PART" "QUIT"))
25 '(erc-nick "bandali")
26 '(erc-pcomplete-nick-postfix ",")
27 '(erc-rename-buffers t)
28 '(erc-server-reconnect-attempts 5)
29 '(erc-server-reconnect-timeout 3)
30 '(erc-track-enable-keybindings nil)
31 '(erc-track-exclude-types
32 '("JOIN" "MODE" "NICK" "PART" "QUIT" "324" "329" "332" "333" "353" "477"))
33 '(erc-track-priority-faces-only 'all)
34 '(erc-track-shorten-function nil)
35 '(eshell-hist-ignoredups t)
36 '(eshell-input-filter 'eshell-input-filter-initial-space)
37 '(flycheck-mode-line-prefix "flyc")
38 '(ibuffer-formats
39 '((mark modified read-only locked " "
40 (name 18 18 :left :elide)
41 " "
42 (size-h 9 -1 :right)
43 " "
44 (mode 16 16 :left :elide)
45 " " filename-and-process)
46 (mark " "
47 (name 16 -1)
48 " " filename)))
49 '(ibuffer-saved-filter-groups
50 '(("default"
51 ("dired"
52 (mode . dired-mode))
53 ("org"
54 (mode . org-mode))
55 ("gnus"
56 (or
57 (mode . gnus-group-mode)
58 (mode . gnus-summary-mode)
59 (mode . gnus-article-mode)
60 (mode . message-mode)))
61 ("web"
62 (or
63 (mode . web-mode)
64 (mode . css-mode)
65 (mode . scss-mode)
66 (mode . js2-mode)))
67 ("shell"
68 (or
69 (mode . eshell-mode)
70 (mode . shell-mode)
71 (mode . term-mode)))
72 ("programming"
73 (or
74 (mode . python-mode)
75 (mode . c-mode)
76 (mode . c++-mode)
77 (mode . java-mode)
78 (mode . emacs-lisp-mode)
79 (mode . scheme-mode)
80 (mode . haskell-mode)
81 (mode . lean-mode)
82 (mode . go-mode)
83 (mode . alloy-mode)))
84 ("tex"
85 (or
86 (mode . bibtex-mode)
87 (mode . latex-mode)))
88 ("emacs"
89 (or
90 (name . "^\\*scratch\\*$")
91 (name . "^\\*Messages\\*$")))
92 ("erc"
93 (mode . erc-mode)))))
94 '(ls-lisp-dirs-first t)
95 '(magit-display-buffer-function 'magit-display-buffer-fullframe-status-v1)
96 '(mml-secure-key-preferences
97 '((OpenPGP
98 (sign)
99 (encrypt
100 ("ineiev@gnu.org" "BD9D4DEE7B2FF1CBEF2EE0C4E0ACD3E0CBE7874A")))
101 (CMS
102 (sign)
103 (encrypt))))
104 '(mml-secure-openpgp-encrypt-to-self t)
105 '(mml-secure-openpgp-sign-with-sender t)
106 '(org-agenda-files
107 '("~/usr/org/todos/personal.org" "~/usr/org/todos/masters.org"))
108 '(org-agenda-start-on-weekday 0)
109 '(org-latex-packages-alist '(("" "listings") ("" "color")))
110 '(page-break-lines-max-width 70)
111 '(projectile-completion-system 'ivy)
112 '(projectile-mode-line-prefix " proj")
113 '(safe-local-variable-values
114 '((eval modify-syntax-entry 43 "'")
115 (eval modify-syntax-entry 36 "'")
116 (eval modify-syntax-entry 126 "'")
117 (eval require 'org-ref)
118 (eval when
119 (featurep 'typo
120 (typo-mode -1)))
121 (eval add-hook 'after-save-hook #'a/async-babel-tangle 'append 'local)
122 (eval add-hook 'after-save-hook 'org-beamer-export-to-latex t t)
123 (eval setq org-latex-prefer-user-labels t)
124 (eval add-hook 'after-save-hook 'org-latex-export-to-latex t t)))
125 '(unkillable-buffers '("^\\*scratch\\*$" "^\\*Messages\\*$"))
126 '(which-key-add-column-padding 5)
127 '(which-key-max-description-length 32))
128 (custom-set-faces
129 ;; custom-set-faces was added by Custom.
130 ;; If you edit it by hand, you could mess it up, so be careful.
131 ;; Your init file should contain only one such instance.
132 ;; If there is more than one, they won't work right.
133 '(dired-directory ((t (:weight semi-bold))))
134 '(ivy-virtual ((t (:inherit font-lock-builtin-face :foreground "dim gray"))))
135 '(magit-diff-file-heading ((t (:weight normal))))
136 '(quote (org-block-begin-line ((t (:foreground "#5a5b5a" :background "#1d1f21")))))
137 '(widget-button ((t (:weight semi-bold)))))