Skip to content

Commit

Permalink
emacs: add org-gtd
Browse files Browse the repository at this point in the history
  • Loading branch information
tiborpilz authored and Tibor Pilz committed Dec 19, 2023
1 parent d7fc2ed commit 5e3347f
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 0 deletions.
2 changes: 2 additions & 0 deletions home/config/doom/config.el
Original file line number Diff line number Diff line change
Expand Up @@ -254,6 +254,8 @@
(set-window-parameter nil 'mode-line-format 'none)
(org-capture)))

(setq org-gtd-directory "~/org/gtd/")

(setq projectile-project-search-path '(("~/Code/" . 1)))

(use-package! jest
Expand Down
13 changes: 13 additions & 0 deletions home/config/doom/config.org
Original file line number Diff line number Diff line change
Expand Up @@ -547,6 +547,19 @@ no modeline.
(set-window-parameter nil 'mode-line-format 'none)
(org-capture)))
#+END_SRC
** Org-GTD
Org-GTD is a package to manage tasks in org-mode. It's based on "Getting Things
Done". ([[https://en.wikipedia.org/wiki/Getting_Things_Done][Wiki]])

Firstly, I'll install the package.
#+begin_src elisp :tangle packages.el
(package! org-gtd)
#+end_src

Secondly, I'll set up the files and directories.
#+begin_src elisp
(setq org-gtd-directory "~/org/gtd/")
#+end_src
* Projectile
** Project Search Path
Search for projects in ~~/Code/~, but only one level deep.
Expand Down
2 changes: 2 additions & 0 deletions home/config/doom/packages.el
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,8 @@

(package! org-present)

(package! org-gtd)

(package! jest)

(package! svelte-mode)
Expand Down

0 comments on commit 5e3347f

Please sign in to comment.