Commit | Line | Data |
---|---|---|
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. | |
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" | |
9e756a57 | 28 | (mode . org-mode)) |
1278d522 AB |
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 | '(org-latex-packages-alist '(("" "listings") ("" "color"))) | |
51 | '(safe-local-variable-values | |
6bda705d AB |
52 | '((eval add-hook 'after-save-hook 'org-beamer-export-to-latex t t) |
53 | (eval setq org-latex-prefer-user-labels t) | |
1278d522 AB |
54 | (eval add-hook 'after-save-hook 'org-latex-export-to-latex t t) |
55 | (org-hugo-footer . " | |
56 | ||
57 | [//]: # \"Exported with love from a post written in Org mode\" | |
58 | [//]: # \"- https://ox-hugo.scripter.co\"") | |
59 | (eval add-hook 'after-save-hook #'amin/async-babel-tangle 'append 'local)))) | |
60 | (custom-set-faces | |
61 | ;; custom-set-faces was added by Custom. | |
62 | ;; If you edit it by hand, you could mess it up, so be careful. | |
63 | ;; Your init file should contain only one such instance. | |
64 | ;; If there is more than one, they won't work right. | |
65 | '(dired-directory ((t (:weight semi-bold)))) | |
66 | '(font-lock-comment-face ((t (:foreground "#111111" :weight semi-bold)))) | |
67 | '(ivy-minibuffer-match-face-2 ((t (:background "#e99ce8" :weight semi-bold)))) | |
68 | '(ivy-minibuffer-match-face-3 ((t (:background "#bbbbff" :weight semi-bold)))) | |
69 | '(ivy-minibuffer-match-face-4 ((t (:background "#ffbbff" :weight semi-bold)))) | |
70 | '(magit-diff-file-heading ((t (:weight normal)))) | |
71 | '(message-header-subject ((t (:foreground "navy blue" :weight semi-bold)))) | |
72 | '(message-header-to ((t (:foreground "MidnightBlue" :weight semi-bold)))) | |
73 | '(notmuch-search-unread-face ((t (:weight semi-bold)))) | |
74 | '(notmuch-tag-face ((t (:foreground "navy blue" :weight semi-bold)))) | |
75 | '(widget-button ((t (:weight semi-bold))))) |