mirror of
https://github.com/pestctrl/emacs-config.git
synced 2026-02-16 16:24:18 +00:00
Load org configuration from config-org file.
This commit is contained in:
parent
0dfeef9f8d
commit
b16e163ab9
2 changed files with 3 additions and 3 deletions
|
|
@ -1,7 +1,8 @@
|
|||
#+PROPERTY: header-args:emacs-lisp :tangle "~/.emacs.d/config-org.el" :comments both
|
||||
|
||||
* Need this for base config
|
||||
* The all-mighty org configuration
|
||||
#+begin_src emacs-lisp
|
||||
(require 'my-org)
|
||||
(require 'my-org-agenda-files)
|
||||
#+end_src
|
||||
* Plugins
|
||||
|
|
@ -632,7 +633,7 @@
|
|||
(after-init . org-roam-mode)
|
||||
:straight (:host github :repo "jethrokuan/org-roam" :branch "master")
|
||||
:custom
|
||||
(org-roam-directory "~/MEGA/org/org-roam/")
|
||||
(org-roam-directory (expand-file-name "org-roam" my/org-folder))
|
||||
:bind (:map org-roam-mode-map
|
||||
(("C-c n l" . org-roam)
|
||||
("C-c n f" . org-roam-find-file)
|
||||
|
|
|
|||
1
init.el
1
init.el
|
|
@ -85,7 +85,6 @@
|
|||
;; Load work stuff when at work.
|
||||
(if my/at-ti
|
||||
(require 'work-config)
|
||||
(require 'my-org)
|
||||
(org-babel-load-file
|
||||
(expand-file-name "config-org.org"
|
||||
user-emacs-directory)))
|
||||
|
|
|
|||
Loading…
Reference in a new issue