-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsettings.el
25 lines (25 loc) · 1014 Bytes
/
settings.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
(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.
'(column-number-mode t)
'(completion-category-overrides '((file (styles basic partial-completion))))
'(completion-styles '(orderless basic))
'(cursor-type 'hollow)
'(custom-enabled-themes '(zenburn))
'(custom-file "~/.emacs.d/settings.el")
'(display-line-numbers t)
'(global-hl-line-mode t)
'(go-mode-hook '(eglot-ensure) t)
'(indent-tabs-mode nil)
'(initial-buffer-choice t)
'(org-agenda-files (list org-directory))
'(org-default-notes-file (concat org-directory "/todo.org"))
'(warning-suppress-types '((comp))))
(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.
)