Update customs

This commit is contained in:
Marcus Kammer 2020-05-15 20:26:53 +02:00
parent 0cc8b5552d
commit 85d685ab12
3 changed files with 29 additions and 2 deletions

View file

@ -8,7 +8,9 @@
'(custom-enabled-themes (quote (misterioso))) '(custom-enabled-themes (quote (misterioso)))
'(inhibit-startup-buffer-menu t) '(inhibit-startup-buffer-menu t)
'(initial-buffer-choice "d:/syncplicity/Marcus.Kammer/documents/Journal/README.org") '(initial-buffer-choice "d:/syncplicity/Marcus.Kammer/documents/Journal/README.org")
'(package-selected-packages (quote (ox-reveal ace-window htmlize ivy magit)))) '(package-selected-packages
(quote
(org toc-org ox-reveal ace-window htmlize ivy magit))))
(custom-set-faces (custom-set-faces
;; custom-set-faces was added by Custom. ;; custom-set-faces was added by Custom.
;; If you edit it by hand, you could mess it up, so be careful. ;; If you edit it by hand, you could mess it up, so be careful.

22
bundle/custom_win32.el Normal file
View file

@ -0,0 +1,22 @@
(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.
'(ansi-color-faces-vector
[default default default italic underline success warning error])
'(custom-enabled-themes (quote (misterioso)))
'(inhibit-startup-buffer-menu t)
'(initial-buffer-choice "d:/syncplicity/Marcus.Kammer/documents/Journal/README.org")
'(org-modules
(quote
(ol-bbdb ol-bibtex ol-docview ol-eww ol-gnus ol-info ol-irc ol-mhe ol-rmail org-tempo ol-w3m)))
'(package-selected-packages
(quote
(org toc-org ox-reveal ace-window htmlize ivy magit))))
(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.
)

View file

@ -62,7 +62,10 @@
(with-current-buffer "*scratch*" (emacs-lock-mode 'kill)) (with-current-buffer "*scratch*" (emacs-lock-mode 'kill))
;; CUSTOM_FILE ;; CUSTOM_FILE
(setq custom-file "~/.emacs.d/bundle/custom.el") (when (eq system-type 'windows-nt)
(setq custom-file "~/.emacs.d/bundle/custom_win32.el"))
(when (eq system-type 'gnu/linux)
(setq custom-file "~/.emacs.d/bundle/custom_gnu.el"))
(load custom-file :noerror) (load custom-file :noerror)
;; PACKAGE ;; PACKAGE