Update customs
This commit is contained in:
parent
0cc8b5552d
commit
85d685ab12
3 changed files with 29 additions and 2 deletions
|
@ -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
22
bundle/custom_win32.el
Normal 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.
|
||||||
|
)
|
5
init.el
5
init.el
|
@ -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
|
||||||
|
|
Loading…
Add table
Reference in a new issue