Skip to content
This repository has been archived by the owner on Jul 26, 2024. It is now read-only.

Commit

Permalink
feat: add org-ai
Browse files Browse the repository at this point in the history
  • Loading branch information
Kyure-A committed Apr 26, 2024
1 parent a1dfa18 commit 8dfb452
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions .emacs.d/README.org
Original file line number Diff line number Diff line change
Expand Up @@ -1157,7 +1157,10 @@ cause bug?
(add-to-list 'load-path (locate-user-emacs-file "el-clone/org-roam"))
(add-to-list 'load-path (locate-user-emacs-file "el-clone/org-roam/extensions"))
(add-to-list 'load-path (locate-user-emacs-file "el-clone/org-roam-ui"))
(autoload-if-found '(org-roam-mode) "org-roam")
(autoload-if-found '(org-roam-ui-mode) "org-roam-ui")
(with-eval-after-load 'org
(require 'org-roam))
(with-eval-after-load 'org-roam-mode
(add-hook 'org-roam-mode-hook #'org-roam-ui-mode)))
#+end_src
Expand All @@ -1169,6 +1172,18 @@ cause bug?
(require 'org-tempo)))
#+end_src

**** org-ai
#+begin_src emacs-lisp
(eval-when-compile
(el-clone :repo "rksm/org-ai"))

(with-delayed-execution
(add-to-list 'load-path (locate-user-emacs-file "el-clone/org-ai"))
(autoload-if-found '(org-ai-mode) "org-ai")
(with-eval-after-load 'org
(add-hook 'org-mode-hook #'org-ai-mode)))
#+end_src

*** VHDL
#+begin_src emacs-lisp
(with-delayed-execution
Expand Down

0 comments on commit 8dfb452

Please sign in to comment.