-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathinit.el
More file actions
40 lines (37 loc) · 1.94 KB
/
init.el
File metadata and controls
40 lines (37 loc) · 1.94 KB
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
;;; package --- Summary
;;; Commentary:
;; My minimal init file that use the myinit29.org file.
;;; 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.
'(bmkp-last-as-first-bookmark-file "/home/alan/MYCONFIG/EMACS-CONF/EMACS29/bookmarks")
'(custom-enabled-themes '(sanityinc-tomorrow-night))
'(custom-safe-themes
'("6fc9e40b4375d9d8d0d9521505849ab4d04220ed470db0b78b700230da0a86c1" "06f0b439b62164c6f8f84fdda32b62fb50b6d00e8b01c2208e55543a6337433a" default))
'(package-selected-packages
'(projectile ruff-format flymake-ruff atomic-chrome csv-mode pyvenv flymake-yamllint highlight-symbol auto-package-update all-the-icons-ibuffer flymake-yaml markdown-preview-mode dired all-the-icons-completion all-the-icons-dired ein csv highlight-indent-guides dired-x wgrep rainbow-delimiters))
'(safe-local-variable-values
'((org-export-in-background . t)
(org-latex-default-packages-alist "")
(reftex-default-bibliography "~/PHILOSOPHIE/NOTES/BiblioPhilo.bib")
(after-save-hook . org-babel-tangle)))
'(use-package-always-defer t)
'(use-package-always-ensure 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.
'(highlight-indent-guides-character-face ((t (:foreground "gray35"))))
'(highlight-indent-guides-stack-character-face ((t (:foreground "gray35"))))
'(highlight-indent-guides-top-character-face ((t (:foreground "gray35")))))
;; Automatically load the tangled file from myinit29.org.
(org-babel-load-file
(expand-file-name "myinit29.org"
user-emacs-directory))
(message "after myinit29 before provide init")
(provide 'init)
;;; init.el ends here