emacs: try out pinentry
[~bandali/configs] / .emacs.d / etc / custom.el
CommitLineData
1278d522
AB
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.
bb828f37 6 '(auth-sources '("~/.authinfo.gpg"))
1278d522
AB
7 '(company-dabbrev-char-regexp "\\sw\\|\\s_\\|[-_]")
8 '(company-dabbrev-downcase nil)
9 '(company-dabbrev-ignore-case nil)
1278d522
AB
10 '(company-minimum-prefix-length 1)
11 '(company-selection-wrap-around t)
fdc9d634
AB
12 '(ediff-split-window-function 'split-window-horizontally t)
13 '(ediff-window-setup-function 'ediff-setup-windows-plain t)
fb31686d
AB
14 '(eshell-hist-ignoredups t)
15 '(eshell-input-filter 'eshell-input-filter-initial-space)
fdc9d634 16 '(flycheck-mode-line-prefix "flyc")
1278d522
AB
17 '(ibuffer-formats
18 '((mark modified read-only locked " "
19 (name 18 18 :left :elide)
20 " "
21 (size-h 9 -1 :right)
22 " "
23 (mode 16 16 :left :elide)
24 " " filename-and-process)
25 (mark " "
26 (name 16 -1)
fdc9d634 27 " " filename)))
1278d522
AB
28 '(ibuffer-saved-filter-groups
29 '(("default"
30 ("dired"
31 (mode . dired-mode))
32 ("org"
9e756a57 33 (mode . org-mode))
6ce4ebba
AB
34 ("gnus"
35 (or
36 (mode . gnus-group-mode)
37 (mode . gnus-summary-mode)
38 (mode . gnus-article-mode)
39 (mode . message-mode)))
1278d522
AB
40 ("web"
41 (or
42 (mode . web-mode)
43 (mode . css-mode)
44 (mode . scss-mode)
45 (mode . js2-mode)))
46 ("shell"
47 (or
48 (mode . eshell-mode)
6ce4ebba
AB
49 (mode . shell-mode)
50 (mode . term-mode)))
1278d522
AB
51 ("programming"
52 (or
53 (mode . python-mode)
6ce4ebba 54 (mode . c-mode)
1278d522 55 (mode . c++-mode)
cb01f2c5 56 (mode . java-mode)
6ce4ebba
AB
57 (mode . emacs-lisp-mode)
58 (mode . scheme-mode)
59 (mode . haskell-mode)
cb01f2c5 60 (mode . lean-mode)
fdc9d634 61 (mode . go-mode)
cb01f2c5 62 (mode . alloy-mode)))
fb31686d
AB
63 ("tex"
64 (or
65 (mode . bibtex-mode)
66 (mode . latex-mode)))
1278d522
AB
67 ("emacs"
68 (or
69 (name . "^\\*scratch\\*$")
cb01f2c5
AB
70 (name . "^\\*Messages\\*$")))
71 ("erc"
fdc9d634
AB
72 (mode . erc-mode)))))
73 '(ls-lisp-dirs-first t)
74 '(magit-display-buffer-function 'magit-display-buffer-fullframe-status-v1)
cb01f2c5
AB
75 '(org-agenda-files
76 '("~/usr/org/todos/personal.org" "~/usr/org/todos/masters.org"))
fb31686d 77 '(org-agenda-start-on-weekday 0 t)
1278d522
AB
78 '(org-latex-packages-alist '(("" "listings") ("" "color")))
79 '(safe-local-variable-values
fdc9d634
AB
80 '((eval modify-syntax-entry 43 "'")
81 (eval modify-syntax-entry 36 "'")
82 (eval modify-syntax-entry 126 "'")
83 (eval require 'org-ref)
1556b13e 84 (eval when
6ce4ebba
AB
85 (featurep 'typo
86 (typo-mode -1)))
fb31686d 87 (eval add-hook 'after-save-hook #'a/async-babel-tangle 'append 'local)
6ce4ebba 88 (eval add-hook 'after-save-hook 'org-beamer-export-to-latex t t)
6bda705d 89 (eval setq org-latex-prefer-user-labels t)
fb31686d 90 (eval add-hook 'after-save-hook 'org-latex-export-to-latex t t)))
1556b13e
AB
91 '(which-key-add-column-padding 5)
92 '(which-key-max-description-length 32))
1278d522
AB
93(custom-set-faces
94 ;; custom-set-faces was added by Custom.
95 ;; If you edit it by hand, you could mess it up, so be careful.
96 ;; Your init file should contain only one such instance.
97 ;; If there is more than one, they won't work right.
98 '(dired-directory ((t (:weight semi-bold))))
970aa92e 99 '(ivy-virtual ((t (:inherit font-lock-builtin-face :foreground "dim gray"))))
1278d522 100 '(magit-diff-file-heading ((t (:weight normal))))
4b4c2c1d 101 '(quote (org-block-begin-line ((t (:foreground "#5a5b5a" :background "#1d1f21")))))
1278d522 102 '(widget-button ((t (:weight semi-bold)))))