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. | |
a23fd4a0 AB |
6 | '(abbrev-file-name "/home/bandali/.emacs.d/var/abbrev.el") |
7 | '(auth-sources (quote ("~/.authinfo.gpg"))) | |
1278d522 AB |
8 | '(company-dabbrev-char-regexp "\\sw\\|\\s_\\|[-_]") |
9 | '(company-dabbrev-downcase nil) | |
10 | '(company-dabbrev-ignore-case nil) | |
1278d522 AB |
11 | '(company-minimum-prefix-length 1) |
12 | '(company-selection-wrap-around t) | |
7e1cad06 | 13 | '(ebdb-gnus-window-configuration |
a23fd4a0 AB |
14 | (quote |
15 | (article | |
7e1cad06 AB |
16 | (vertical 1.0 |
17 | (summary 0.25 point) | |
18 | (horizontal 1.0 | |
19 | (article 1.0) | |
a23fd4a0 | 20 | (ebdb-gnus 0.3)))))) |
5e73fac6 AB |
21 | '(ediff-split-window-function (quote split-window-horizontally)) |
22 | '(ediff-window-setup-function (quote ediff-setup-windows-plain)) | |
a23fd4a0 AB |
23 | '(epa-pinentry-mode (quote loopback)) |
24 | '(epg-gpg-program "/home/bandali/.guix-profile/bin/gpg") | |
25 | '(epg-pinentry-mode (quote loopback) t) | |
26 | '(erc-fill-function (quote erc-fill-static)) | |
7e1cad06 | 27 | '(erc-fill-static-center 18) |
5e73fac6 AB |
28 | '(erc-join-buffer (quote bury)) |
29 | '(erc-lurker-hide-list (quote ("JOIN" "PART" "QUIT"))) | |
30 | '(erc-nick "bandali") | |
7e1cad06 | 31 | '(erc-pcomplete-nick-postfix ",") |
5e73fac6 AB |
32 | '(erc-rename-buffers t) |
33 | '(erc-server-reconnect-attempts 5) | |
34 | '(erc-server-reconnect-timeout 3) | |
7e1cad06 AB |
35 | '(erc-track-enable-keybindings nil) |
36 | '(erc-track-exclude-types | |
a23fd4a0 AB |
37 | (quote |
38 | ("JOIN" "MODE" "NICK" "PART" "QUIT" "324" "329" "332" "333" "353" "477"))) | |
39 | '(erc-track-priority-faces-only (quote all)) | |
7e1cad06 | 40 | '(erc-track-shorten-function nil) |
a23fd4a0 | 41 | '(eshell-directory-name "/home/bandali/.emacs.d/var/eshell/") |
5e73fac6 AB |
42 | '(eshell-hist-ignoredups t) |
43 | '(eshell-input-filter (quote eshell-input-filter-initial-space)) | |
fdc9d634 | 44 | '(flycheck-mode-line-prefix "flyc") |
1278d522 | 45 | '(ibuffer-formats |
a23fd4a0 AB |
46 | (quote |
47 | ((mark modified read-only locked " " | |
1278d522 AB |
48 | (name 18 18 :left :elide) |
49 | " " | |
50 | (size-h 9 -1 :right) | |
51 | " " | |
52 | (mode 16 16 :left :elide) | |
53 | " " filename-and-process) | |
54 | (mark " " | |
55 | (name 16 -1) | |
a23fd4a0 | 56 | " " filename)))) |
1278d522 | 57 | '(ibuffer-saved-filter-groups |
a23fd4a0 AB |
58 | (quote |
59 | (("default" | |
1278d522 AB |
60 | ("dired" |
61 | (mode . dired-mode)) | |
62 | ("org" | |
9e756a57 | 63 | (mode . org-mode)) |
6ce4ebba AB |
64 | ("gnus" |
65 | (or | |
66 | (mode . gnus-group-mode) | |
67 | (mode . gnus-summary-mode) | |
68 | (mode . gnus-article-mode) | |
69 | (mode . message-mode))) | |
1278d522 AB |
70 | ("web" |
71 | (or | |
72 | (mode . web-mode) | |
73 | (mode . css-mode) | |
74 | (mode . scss-mode) | |
75 | (mode . js2-mode))) | |
76 | ("shell" | |
77 | (or | |
78 | (mode . eshell-mode) | |
6ce4ebba AB |
79 | (mode . shell-mode) |
80 | (mode . term-mode))) | |
1278d522 AB |
81 | ("programming" |
82 | (or | |
83 | (mode . python-mode) | |
6ce4ebba | 84 | (mode . c-mode) |
1278d522 | 85 | (mode . c++-mode) |
cb01f2c5 | 86 | (mode . java-mode) |
6ce4ebba AB |
87 | (mode . emacs-lisp-mode) |
88 | (mode . scheme-mode) | |
89 | (mode . haskell-mode) | |
cb01f2c5 | 90 | (mode . lean-mode) |
fdc9d634 | 91 | (mode . go-mode) |
cb01f2c5 | 92 | (mode . alloy-mode))) |
fb31686d AB |
93 | ("tex" |
94 | (or | |
95 | (mode . bibtex-mode) | |
96 | (mode . latex-mode))) | |
1278d522 AB |
97 | ("emacs" |
98 | (or | |
99 | (name . "^\\*scratch\\*$") | |
cb01f2c5 AB |
100 | (name . "^\\*Messages\\*$"))) |
101 | ("erc" | |
a23fd4a0 AB |
102 | (mode . erc-mode)))))) |
103 | '(ls-lisp-dirs-first t t) | |
104 | '(magit-display-buffer-function (quote magit-display-buffer-fullframe-status-v1)) | |
7e1cad06 | 105 | '(mml-secure-key-preferences |
a23fd4a0 AB |
106 | (quote |
107 | ((OpenPGP | |
7e1cad06 AB |
108 | (sign) |
109 | (encrypt | |
110 | ("ineiev@gnu.org" "BD9D4DEE7B2FF1CBEF2EE0C4E0ACD3E0CBE7874A"))) | |
111 | (CMS | |
112 | (sign) | |
a23fd4a0 | 113 | (encrypt))))) |
7e1cad06 AB |
114 | '(mml-secure-openpgp-encrypt-to-self t) |
115 | '(mml-secure-openpgp-sign-with-sender t) | |
cb01f2c5 | 116 | '(org-agenda-files |
a23fd4a0 AB |
117 | (quote |
118 | ("~/usr/org/todos/personal.org" "~/usr/org/todos/habits.org" "~/src/git/masters-thesis/todo.org"))) | |
7e1cad06 | 119 | '(org-agenda-start-on-weekday 0) |
a23fd4a0 AB |
120 | '(org-agenda-time-leading-zero t) |
121 | '(org-habit-graph-column 44) | |
122 | '(org-latex-packages-alist (quote (("" "listings") ("" "color")))) | |
123 | '(org-pretty-entities t) | |
124 | '(page-break-lines-max-width 70 t) | |
125 | '(projectile-completion-system (quote ivy)) | |
7e1cad06 | 126 | '(projectile-mode-line-prefix " proj") |
a23fd4a0 AB |
127 | '(recentf-max-saved-items 2000) |
128 | '(recentf-save-file "/home/bandali/.emacs.d/var/recentf-save.el") | |
1278d522 | 129 | '(safe-local-variable-values |
a23fd4a0 | 130 | (quote |
5e73fac6 AB |
131 | ((tex-main-file . "../thesis.tex") |
132 | (org-export-allow-bind-keywords . t) | |
a23fd4a0 AB |
133 | (eval load-file "thesis.el") |
134 | (eval modify-syntax-entry 43 "'") | |
fdc9d634 AB |
135 | (eval modify-syntax-entry 36 "'") |
136 | (eval modify-syntax-entry 126 "'") | |
a23fd4a0 AB |
137 | (eval require |
138 | (quote org-ref)) | |
1556b13e | 139 | (eval when |
a23fd4a0 AB |
140 | (featurep |
141 | (quote typo) | |
142 | (typo-mode -1))) | |
143 | (eval add-hook | |
144 | (quote after-save-hook) | |
145 | (function a/async-babel-tangle) | |
146 | (quote append) | |
147 | (quote local)) | |
148 | (eval add-hook | |
149 | (quote after-save-hook) | |
150 | (quote org-beamer-export-to-latex) | |
151 | t t) | |
6bda705d | 152 | (eval setq org-latex-prefer-user-labels t) |
a23fd4a0 AB |
153 | (eval add-hook |
154 | (quote after-save-hook) | |
155 | (quote org-latex-export-to-latex) | |
156 | t t)))) | |
5e73fac6 | 157 | '(save-place-file "/home/bandali/.emacs.d/var/save-place.el") |
a23fd4a0 AB |
158 | '(savehist-file "/home/bandali/.emacs.d/var/savehist.el" t) |
159 | '(unkillable-buffers (quote ("^\\*scratch\\*$" "^\\*Messages\\*$"))) | |
1556b13e AB |
160 | '(which-key-add-column-padding 5) |
161 | '(which-key-max-description-length 32)) | |
1278d522 AB |
162 | (custom-set-faces |
163 | ;; custom-set-faces was added by Custom. | |
164 | ;; If you edit it by hand, you could mess it up, so be careful. | |
165 | ;; Your init file should contain only one such instance. | |
166 | ;; If there is more than one, they won't work right. | |
167 | '(dired-directory ((t (:weight semi-bold)))) | |
970aa92e | 168 | '(ivy-virtual ((t (:inherit font-lock-builtin-face :foreground "dim gray")))) |
1278d522 | 169 | '(magit-diff-file-heading ((t (:weight normal)))) |
4b4c2c1d | 170 | '(quote (org-block-begin-line ((t (:foreground "#5a5b5a" :background "#1d1f21"))))) |
1278d522 | 171 | '(widget-button ((t (:weight semi-bold))))) |