-
Notifications
You must be signed in to change notification settings - Fork 0
/
custom.el
71 lines (71 loc) · 2.53 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
(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.
'(apropos-do-all t)
'(avy-background t)
'(aw-keys '(?a ?s ?d ?f ?g ?h ?j ?k ?l))
'(backup-by-copying t)
'(custom-safe-themes
'("c74e83f8aa4c78a121b52146eadb792c9facc5b1f02c917e3dbb454fca931223" default))
'(display-line-numbers-grow-only t)
'(display-line-numbers-width-start t)
'(exec-path-from-shell-variables '("PATH" "MANPATH" "PKG_CONFIG_PATH"))
'(fill-column 79)
'(forge-topic-list-limit '(60 . 0))
'(frame-inhibit-implied-resize t)
'(gc-cons-threshold 100000000)
'(git-commit-fill-column 72)
'(groovy-indent-offset 2)
'(horizontal-scroll-bar-mode nil)
'(indent-tabs-mode nil)
'(inhibit-startup-echo-area-message "")
'(inhibit-startup-screen t)
'(ivy-extra-directories nil)
'(ivy-initial-inputs-alist '())
'(js-indent-level 2)
'(kill-whole-line t)
'(load-prefer-newer t)
'(lsp-keymap-prefix "s-l")
'(lsp-pwsh-code-formatting-preset "OTBS")
'(lsp-pyright-multi-root nil)
'(lsp-rust-server 'rust-analyzer)
'(mac-command-modifier 'super)
'(mac-option-modifier 'meta)
'(magit-diff-refine-hunk t)
'(major-mode-remap-alist '((conf-toml-mode . toml-ts-mode)))
'(markdown-command
"pandoc --from commonmark --to html5 --highlight-style pygments --standalone")
'(menu-bar-mode nil)
'(mouse-yank-at-point t)
'(native-comp-async-report-warnings-errors 'silent)
'(neo-smart-open t)
'(neo-theme 'nerd)
'(nxml-child-indent 4)
'(org-src-fontify-natively t)
'(projectile-completion-system 'ivy)
'(python-fill-docstring-style 'symmetric)
'(require-final-newline t)
'(ring-bell-function 'ignore)
'(save-interprogram-paste-before-kill t)
'(scroll-bar-mode nil)
'(sentence-end-double-space nil)
'(sml/theme 'respectful)
'(split-height-threshold 100)
'(straight-check-for-modifications '(watch-files))
'(straight-use-package-by-default t)
'(straight-vc-git-default-clone-depth 1)
'(too-hardcore-backspace t)
'(too-hardcore-return t)
'(tool-bar-mode nil)
'(undo-tree-history-directory-alist '(("." . "~/.emacs.d/undo")))
'(use-package-verbose t)
'(visible-bell t)
'(whitespace-style '(face empty lines-tail trailing)))
(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.
'(default ((t (:family "JetBrains Mono")))))