summaryrefslogtreecommitdiff
path: root/.config/emacs/custom.el
blob: df915495c2776a3012d9f14f7f86763eb7a7f19c (plain)
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
(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-source-save-behavior nil)
 '(custom-safe-themes
   '("7dc296b80df1b29bfc4062d1a66ee91efb462d6a7a934955e94e786394d80b71" default))
 '(eglot-autoshutdown t)
 '(erc-nick "lukeshu")
 '(global-whitespace-mode nil)
 '(graphviz-dot-auto-indent-on-semi nil)
 '(lsp-go-codelenses
   '((vendor . t)
     (upgrade_dependency . t)
     (tidy . t)
     (test . t)
     (regenerate_cgo . t)
     (generate . t)
     (gc_details . t)))
 '(lsp-lens-enable t)
 '(lsp-ui-sideline-ignore-duplicate t)
 '(lsp-ui-sideline-show-code-actions t)
 '(lsp-ui-sideline-show-hover t)
 '(safe-local-variable-values
   '((Indent-tabs-mode)
     (c-file-offsets
      (block-close . 0)
      (brace-list-close . 0)
      (brace-list-entry . 0)
      (brace-list-intro . +)
      (case-label . 0)
      (class-close . 0)
      (defun-block-intro . +)
      (defun-close . 0)
      (defun-open . 0)
      (else-clause . 0)
      (inclass . +)
      (label . 0)
      (statement . 0)
      (statement-block-intro . +)
      (statement-case-intro . +)
      (statement-cont . +)
      (substatement . +)
      (topmost-intro . 0))
     (eval outline-show-all)
     (sgml-basic-offset . 8)
     (nxml-child-indent . 2)
     (sentence-end-double-space nil)
     (Fill-Column . 64)
     (eval c-set-offset 'arglist-close 0)
     (eval c-set-offset 'arglist-intro '++)
     (eval c-set-offset 'case-label 0)
     (eval c-set-offset 'statement-case-open 0)
     (eval c-set-offset 'substatement-open 0)
     (Nginx-indent-tabs-mode)
     (Nginx-indent-level . 4)
     (Nginx-indent-level . 8)
     (c-set-style . "K&R")))
 '(use-package-verbose 'debug)
 '(yaml-block-literal-electric-alist nil))
(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.
 '(mmm-cleanup-submode-face ((((class color) (min-colors 89)) :background "#693200")))
 '(mmm-code-submode-face ((((class color) (min-colors 89)) :background "#323232")))
 '(mmm-comment-submode-face ((((class color) (min-colors 89)) :background "#242679")))
 '(mmm-declaration-submode-face ((((class color) (min-colors 89)) :background "#004065")))
 '(mmm-default-submode-face ((((class color) (min-colors 89)) :background "#191a1b")))
 '(mmm-init-submode-face ((((class color) (min-colors 89)) :background "#71206a")))
 '(mmm-output-submode-face ((((class color) (min-colors 89)) :background "#77002a")))
 '(mmm-special-submode-face ((((class color) (min-colors 89)) :background "#00422a"))))