Skip to content

Commit

Permalink
Fix: .el and .org loading order for my-life
Browse files Browse the repository at this point in the history
  • Loading branch information
alhassy committed Nov 8, 2024
1 parent c1c289c commit 9331731
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# [[file:../../init.org::*Github Actions][Github Actions:1]]
# [[file:../../init.org::#Github-Actions][Github Actions:1]]
# This workflow will do a clean install of dependencies and run tests
# For more information see: https://help.github.com/actions/language-and-framework-guides/

Expand Down
4 changes: 2 additions & 2 deletions init.el
Original file line number Diff line number Diff line change
Expand Up @@ -1167,8 +1167,8 @@ if REMOTE is https://github.com/X/Y then LOCAL becomes ∼/Y."
;; and cosmetics, then open my notes files.
(add-hook 'emacs-startup-hook
(lambda ()
(find-file "~/my-life.org")
(load "~/my-life.el")))
(load "~/my-life.el")
(find-file "~/my-life.org")))

;; The modeline looks really nice with doom-themes, e.g., doom-solarised-light.
(use-package doom-modeline
Expand Down
4 changes: 2 additions & 2 deletions init.org
Original file line number Diff line number Diff line change
Expand Up @@ -4968,8 +4968,8 @@ my to-do list and my init file, side-by-side.
;; and cosmetics, then open my notes files.
(add-hook 'emacs-startup-hook
(lambda ()
(find-file "~/my-life.org")
(load "~/my-life.el")))
(load "~/my-life.el")
(find-file "~/my-life.org")))
#+END_SRC

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

0 comments on commit 9331731

Please sign in to comment.