Skip to content

Commit 9331731

Browse files
committed
Fix: .el and .org loading order for my-life
1 parent c1c289c commit 9331731

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

.github/workflows/main.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# [[file:../../init.org::*Github Actions][Github Actions:1]]
1+
# [[file:../../init.org::#Github-Actions][Github Actions:1]]
22
# This workflow will do a clean install of dependencies and run tests
33
# For more information see: https://help.github.com/actions/language-and-framework-guides/
44

init.el

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1167,8 +1167,8 @@ if REMOTE is https://github.com/X/Y then LOCAL becomes ∼/Y."
11671167
;; and cosmetics, then open my notes files.
11681168
(add-hook 'emacs-startup-hook
11691169
(lambda ()
1170-
(find-file "~/my-life.org")
1171-
(load "~/my-life.el")))
1170+
(load "~/my-life.el")
1171+
(find-file "~/my-life.org")))
11721172

11731173
;; The modeline looks really nice with doom-themes, e.g., doom-solarised-light.
11741174
(use-package doom-modeline

init.org

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4968,8 +4968,8 @@ my to-do list and my init file, side-by-side.
49684968
;; and cosmetics, then open my notes files.
49694969
(add-hook 'emacs-startup-hook
49704970
(lambda ()
4971-
(find-file "~/my-life.org")
4972-
(load "~/my-life.el")))
4971+
(load "~/my-life.el")
4972+
(find-file "~/my-life.org")))
49734973
#+END_SRC
49744974

49754975
There is the neat-looking [[https://github.com/emacs-dashboard/emacs-dashboard][emacs-dashboard]] package that provides an extensbile

0 commit comments

Comments
 (0)