Move org and calendar settings out of custom

This commit is contained in:
Marcus Kammer 2019-11-17 10:38:17 +01:00
parent 9370604ec7
commit b08909feee
4 changed files with 24 additions and 34 deletions

View file

@ -1,9 +1,9 @@
(setq cal-html-directory "~/Documents/Diary")
(setq view-diary-entries-initially t)
(setq mark-diary-entries-in-calendar t)
(setq number-of-diary-entries 7)
(setq calendar-date-style (quote iso))
(setq calendar-week-start-day 1)
(setq cal-html-directory "~/Documents/Diary"
view-diary-entries-initially t
mark-diary-entries-in-calendar t
number-of-diary-entries 7
calendar-date-style (quote iso)
calendar-week-start-day 1)
(setq calendar-intermonth-text
(quote

View file

@ -87,34 +87,6 @@
'(nord-comment-brightness 15)
'(nord-region-highlight "snowstorm")
'(nord-uniform-mode-lines t)
'(org-agenda-dim-blocked-tasks nil)
'(org-agenda-files (quote ("~/Documents/Journal")))
'(org-agenda-inhibit-startup nil)
'(org-agenda-use-tag-inheritance nil)
'(org-babel-load-languages
(quote
((js . t)
(emacs-lisp . t)
(python . t)
(sqlite . t)
(lisp . t)
(shell . t)
(css . t)
(calc . t))))
'(org-babel-shell-names
(quote
("sh" "bash" "csh" "ash" "dash" "ksh" "mksh" "posh")))
'(org-clock-persist t)
'(org-confirm-babel-evaluate nil)
'(org-default-notes-file "~/Documents/Journal/notes.org")
'(org-html-doctype "html5")
'(org-html-html5-fancy t)
'(org-log-done (quote time))
'(org-startup-folded nil)
'(org-startup-truncated nil)
'(org-todo-keywords
(quote
((sequence "TODO" "FEEDBACK" "VERIFY" "|" "DONE" "DELEGATED"))))
'(package-enable-at-startup t)
'(package-selected-packages
(quote

View file

@ -0,0 +1,17 @@
(setq org-agenda-dim-blocked-tasks nil
org-agenda-files (quote ("~/Documents/Journal"))
org-agenda-inhibit-startup nil
org-agenda-use-tag-inheritance nil
org-babel-load-languages (quote ((js . t) (emacs-lisp . t) (python . t) (sqlite . t) (lisp . t) (shell . t) (css . t) (calc . t)))
org-babel-shell-names (quote ("sh" "bash" "csh" "ash" "dash" "ksh" "mksh" "posh"))
org-clock-persist t
org-confirm-babel-evaluate nil
org-default-notes-file "~/Documents/Journal/notes.org"
org-html-doctype "html5"
org-html-html5-fancy t
org-log-done (quote time)
org-startup-folded nil
org-startup-truncated nil
org-todo-keywords (quote ((sequence "TODO" "FEEDBACK" "VERIFY" "|" "DONE" "DELEGATED"))))
(provide 'org-mode-settings)

View file

@ -38,6 +38,7 @@ There are two things you can do about this warning:
(require 'display)
(require 'hooks)
(require 'calendar-settings)
(require 'org-mode-settings)
;; start a server, unless one is already running
(when (require 'server nil t)