-
Notifications
You must be signed in to change notification settings - Fork 2
/
custom.el
47 lines (47 loc) · 1.63 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
(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.
'(cider-xref-fn-depth nil)
'(load-prefer-newer t t)
'(mac-command-modifier 'super)
'(mac-right-option-modifier nil)
'(mouse-wheel-progressive-speed nil)
'(ns-command-modifier 'super)
'(ns-function-modifier 'hyper)
'(ns-right-alternate-modifier nil)
'(package-archive-priorities
'(("gnu" . 99)
("nongnu" . 80)
("stable" . 70)
("melpa" . 0)))
'(package-selected-packages
'(which-key flycheck lsp-ui lsp-mode magit flycheck-clojure clojure-mode clj-refactor cider rainbow-delimiters paredit dracula-theme))
'(safe-local-variable-values
'((elisp-lint-indent-specs
(if-let* . 2)
(when-let* . 1)
(let* . defun)
(nrepl-dbind-response . 2)
(cider-save-marker . 1)
(cider-propertize-region . 1)
(cider-map-repls . 1)
(cider--jack-in . 1)
(cider--make-result-overlay . 1)
(insert-label . defun)
(insert-align-label . defun)
(insert-rect . defun)
(cl-defun . 2)
(with-parsed-tramp-file-name . 2)
(thread-first . 0)
(thread-last . 0)
(transient-define-prefix . defmacro)
(transient-define-suffix . defmacro))
(checkdoc-package-keywords-flag))))
(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.
)