-
Notifications
You must be signed in to change notification settings - Fork 0
/
custom.el
99 lines (97 loc) · 3.39 KB
/
custom.el
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
;;; custom.el --- Configuration generated by Customize interface ;; -*- lexical-binding: t; -*-
;;; Commentary:
;;; Code:
(custom-set-variables
;; custom-set-variables was added by Custom.
;; If you edit it by hand, you could mess it up, so be careful.
;; Your init file should contain only one such instance.
;; If there is more than one, they won't work right.
'(auth-sources '(password-store))
'(auto-save-default nil)
'(blink-cursor-mode nil)
'(calendar-date-style 'european)
'(calendar-mark-diary-entries-flag t)
'(calendar-week-start-day 1)
'(column-number-mode t)
'(completion-auto-help 'always)
'(completion-auto-select 'second-tab)
'(completions-detailed t)
'(completions-format 'one-column)
'(completions-group t)
'(create-lockfiles nil)
'(custom-enabled-themes '(modus-vivendi-tritanopia))
'(default-frame-alist '((fullscreen . maximized) (font . "Cascadia Code 10")))
'(delete-selection-mode t)
'(dired-listing-switches "-alth")
'(display-fill-column-indicator-character 9482)
'(enable-recursive-minibuffers t)
'(eshell-modules-list
'(eshell-alias eshell-banner eshell-basic eshell-cmpl eshell-dirs
eshell-extpipe eshell-glob eshell-hist eshell-ls
eshell-pred eshell-prompt eshell-rebind
eshell-script eshell-term eshell-tramp eshell-unix))
'(fido-vertical-mode t)
'(global-hl-line-mode t)
'(gnus-always-read-dribble-file t)
'(gnus-gcc-mark-as-read t)
'(gnus-inhibit-startup-message t)
'(gnus-interactive-exit nil)
'(gnus-large-newsgroup nil)
'(gnus-secondary-select-methods
'((nnimap "[email protected]" (nnmap-address "posteo.de")
(nnimap-user "[email protected]")
(nnimap-server-port "imaps") (nnimap-stream ssl))))
'(gnus-select-method '(nnnil ""))
'(gnus-use-full-window nil)
'(indicate-buffer-boundaries t)
'(inhibit-startup-screen t)
'(large-file-warning-threshold nil)
'(load-prefer-newer t)
'(make-backup-files nil)
'(menu-bar-mode nil)
'(minibuffer-depth-indicate-mode t)
'(mm-text-html-renderer 'gnus-w3m)
'(native-comp-async-report-warnings-errors nil)
'(nov-text-width 0)
'(org-babel-load-languages
'((shell . t) (python . t) (plantuml . t) (C . t) (emacs-lisp . t)))
'(org-babel-python-command "python3")
'(org-confirm-babel-evaluate nil)
'(org-edit-src-content-indentation 0)
'(org-ellipsis " ▾")
'(org-export-backends '(ascii html icalendar latex md odt))
'(org-export-use-babel nil)
'(org-export-with-sub-superscripts nil)
'(org-hide-emphasis-markers t)
'(org-hide-leading-stars t)
'(org-log-done 'time)
'(org-src-window-setup 'current-window)
'(org-startup-folded t)
'(org-startup-indented t)
'(package-selected-packages nil)
'(pixel-scroll-precision-mode t)
'(recentf-mode t)
'(remote-file-name-inhibit-cache t)
'(require-final-newline t)
'(save-place-mode t)
'(savehist-mode t)
'(scroll-bar-mode nil)
'(switch-to-buffer-in-dedicated-window 'pop)
'(switch-to-buffer-obey-display-actions t)
'(tab-always-indent 'complete)
'(tool-bar-mode nil)
'(tramp-completion-use-auth-sources nil)
'(tramp-default-method "ssh")
'(use-short-answers t)
'(user-full-name "Bartosz Kaczyński")
'(visible-bell t)
'(which-key-mode t)
'(yas-global-mode t))
(custom-set-faces
;; custom-set-faces was added by Custom.
;; If you edit it by hand, you could mess it up, so be careful.
;; Your init file should contain only one such instance.
;; If there is more than one, they won't work right.
)
(provide 'custom)
;;; custom.el ends here