| 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 | '(eshell-hist-ignoredups t) |
| 13 | '(eshell-input-filter 'eshell-input-filter-initial-space) |
| 14 | '(ibuffer-formats |
| 15 | '((mark modified read-only locked " " |
| 16 | (name 18 18 :left :elide) |
| 17 | " " |
| 18 | (size-h 9 -1 :right) |
| 19 | " " |
| 20 | (mode 16 16 :left :elide) |
| 21 | " " filename-and-process) |
| 22 | (mark " " |
| 23 | (name 16 -1) |
| 24 | " " filename))) |
| 25 | '(ibuffer-saved-filter-groups |
| 26 | '(("default" |
| 27 | ("dired" |
| 28 | (mode . dired-mode)) |
| 29 | ("org" |
| 30 | (mode . org-mode)) |
| 31 | ("gnus" |
| 32 | (or |
| 33 | (mode . gnus-group-mode) |
| 34 | (mode . gnus-summary-mode) |
| 35 | (mode . gnus-article-mode) |
| 36 | (mode . message-mode))) |
| 37 | ("web" |
| 38 | (or |
| 39 | (mode . web-mode) |
| 40 | (mode . css-mode) |
| 41 | (mode . scss-mode) |
| 42 | (mode . js2-mode))) |
| 43 | ("shell" |
| 44 | (or |
| 45 | (mode . eshell-mode) |
| 46 | (mode . shell-mode) |
| 47 | (mode . term-mode))) |
| 48 | ("programming" |
| 49 | (or |
| 50 | (mode . python-mode) |
| 51 | (mode . c-mode) |
| 52 | (mode . c++-mode) |
| 53 | (mode . java-mode) |
| 54 | (mode . emacs-lisp-mode) |
| 55 | (mode . scheme-mode) |
| 56 | (mode . haskell-mode) |
| 57 | (mode . lean-mode) |
| 58 | (mode . alloy-mode))) |
| 59 | ("tex" |
| 60 | (or |
| 61 | (mode . bibtex-mode) |
| 62 | (mode . latex-mode))) |
| 63 | ("emacs" |
| 64 | (or |
| 65 | (name . "^\\*scratch\\*$") |
| 66 | (name . "^\\*Messages\\*$"))) |
| 67 | ("erc" |
| 68 | (mode . erc-mode))))) |
| 69 | '(ls-lisp-dirs-first t t) |
| 70 | '(org-agenda-files |
| 71 | '("~/usr/org/todos/personal.org" "~/usr/org/todos/masters.org")) |
| 72 | '(org-agenda-start-on-weekday 0 t) |
| 73 | '(org-latex-packages-alist '(("" "listings") ("" "color"))) |
| 74 | '(safe-local-variable-values |
| 75 | '((eval require 'org-ref) |
| 76 | (eval when |
| 77 | (featurep 'typo |
| 78 | (typo-mode -1))) |
| 79 | (eval add-hook 'after-save-hook #'a/async-babel-tangle 'append 'local) |
| 80 | (eval add-hook 'after-save-hook 'org-beamer-export-to-latex t t) |
| 81 | (eval setq org-latex-prefer-user-labels t) |
| 82 | (eval add-hook 'after-save-hook 'org-latex-export-to-latex t t))) |
| 83 | '(which-key-add-column-padding 5) |
| 84 | '(which-key-max-description-length 32)) |
| 85 | (custom-set-faces |
| 86 | ;; custom-set-faces was added by Custom. |
| 87 | ;; If you edit it by hand, you could mess it up, so be careful. |
| 88 | ;; Your init file should contain only one such instance. |
| 89 | ;; If there is more than one, they won't work right. |
| 90 | '(dired-directory ((t (:weight semi-bold)))) |
| 91 | '(magit-diff-file-heading ((t (:weight normal)))) |
| 92 | '(quote (org-block-begin-line ((t (:foreground "#5a5b5a" :background "#1d1f21"))))) |
| 93 | '(widget-button ((t (:weight semi-bold))))) |