emacs: 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 '(ediff-split-window-function 'split-window-horizontally t)
13 '(ediff-window-setup-function 'ediff-setup-windows-plain t)
14 '(eshell-hist-ignoredups t)
15 '(eshell-input-filter 'eshell-input-filter-initial-space)
16 '(flycheck-mode-line-prefix "flyc")
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)
27 " " filename)))
28 '(ibuffer-saved-filter-groups
29 '(("default"
30 ("dired"
31 (mode . dired-mode))
32 ("org"
33 (mode . org-mode))
34 ("gnus"
35 (or
36 (mode . gnus-group-mode)
37 (mode . gnus-summary-mode)
38 (mode . gnus-article-mode)
39 (mode . message-mode)))
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)
49 (mode . shell-mode)
50 (mode . term-mode)))
51 ("programming"
52 (or
53 (mode . python-mode)
54 (mode . c-mode)
55 (mode . c++-mode)
56 (mode . java-mode)
57 (mode . emacs-lisp-mode)
58 (mode . scheme-mode)
59 (mode . haskell-mode)
60 (mode . lean-mode)
61 (mode . go-mode)
62 (mode . alloy-mode)))
63 ("tex"
64 (or
65 (mode . bibtex-mode)
66 (mode . latex-mode)))
67 ("emacs"
68 (or
69 (name . "^\\*scratch\\*$")
70 (name . "^\\*Messages\\*$")))
71 ("erc"
72 (mode . erc-mode)))))
73 '(ls-lisp-dirs-first t)
74 '(magit-display-buffer-function 'magit-display-buffer-fullframe-status-v1)
75 '(org-agenda-files
76 '("~/usr/org/todos/personal.org" "~/usr/org/todos/masters.org"))
77 '(org-agenda-start-on-weekday 0 t)
78 '(org-latex-packages-alist '(("" "listings") ("" "color")))
79 '(safe-local-variable-values
80 '((eval modify-syntax-entry 43 "'")
81 (eval modify-syntax-entry 36 "'")
82 (eval modify-syntax-entry 126 "'")
83 (eval require 'org-ref)
84 (eval when
85 (featurep 'typo
86 (typo-mode -1)))
87 (eval add-hook 'after-save-hook #'a/async-babel-tangle 'append 'local)
88 (eval add-hook 'after-save-hook 'org-beamer-export-to-latex t t)
89 (eval setq org-latex-prefer-user-labels t)
90 (eval add-hook 'after-save-hook 'org-latex-export-to-latex t t)))
91 '(which-key-add-column-padding 5)
92 '(which-key-max-description-length 32))
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))))
99 '(ivy-virtual ((t (:inherit font-lock-builtin-face :foreground "dim gray"))))
100 '(magit-diff-file-heading ((t (:weight normal))))
101 '(quote (org-block-begin-line ((t (:foreground "#5a5b5a" :background "#1d1f21")))))
102 '(widget-button ((t (:weight semi-bold)))))