diff options
author | odave <aryadevchavali1@gmail.com> | 2020-03-29 17:13:42 +0100 |
---|---|---|
committer | odave <aryadevchavali1@gmail.com> | 2020-03-29 17:22:03 +0100 |
commit | c20b9d62d066ebac1c03837744b2d34ba5e551d0 (patch) | |
tree | 60d23d61bb4d816b858686c5aa2e63fe40a15d29 /doom.d/org/writers.org | |
parent | d689b505dab3905349cace54ef0d6f7702ca7eb3 (diff) | |
download | dotfiles-c20b9d62d066ebac1c03837744b2d34ba5e551d0.tar.gz dotfiles-c20b9d62d066ebac1c03837744b2d34ba5e551d0.tar.bz2 dotfiles-c20b9d62d066ebac1c03837744b2d34ba5e551d0.zip |
~moved config/*.org -> org/*.org
Also changed literate to for this change
Diffstat (limited to 'doom.d/org/writers.org')
-rw-r--r-- | doom.d/org/writers.org | 55 |
1 files changed, 55 insertions, 0 deletions
diff --git a/doom.d/org/writers.org b/doom.d/org/writers.org new file mode 100644 index 0000000..825a7b0 --- /dev/null +++ b/doom.d/org/writers.org @@ -0,0 +1,55 @@ +#+TITLE: Writers module + +* Thesaurus +#+BEGIN_SRC elisp +(use-package! powerthesaurus + :after-call (org-mode) + :defer-incrementally (org) + :config + (map! + :localleader + :map org-mode-map + :prefix "w" + :desc "Thesaurus" "t" #'powerthesaurus-lookup-word-at-point)) +#+END_SRC +Powerthesaurus for thesaurus on writer files +* Spelling checker +#+BEGIN_SRC elisp +(map! + :after (flyspell org) + :localleader + :map org-mode-map + :prefix "w" + :desc "Correct current word" "c" #'flyspell-correct-at-point + :desc "Autocorrect word" "a" #'flyspell-auto-correct-word + :desc "Goto next error" "w" #'flyspell-goto-next-error) +#+END_SRC +* Org +** Org +#+BEGIN_SRC elisp +(setq org-directory "~/Text" + org-agenda-files (directory-files-recursively org-directory ".org")) +(map! ; Org keybinds + :after org + :map org-mode-map + :localleader + :desc "Org dispatch" "e" #'org-export-dispatch + :desc "Export to ODT" "E" #'org-pandoc-export-to-odt + (:prefix ("N" . "narrow") + :desc "Narrow to subtree" "n" #'org-narrow-to-subtree + :desc "Go out of narrow" "o" #'widen + :desc "Narrow tags" "t" #'org-tags-sparse-tree)) +#+END_SRC + +I like using the org dispatch facilities more than the default export keybinds +in Doom, so I need this binding +** Org calendar +#+BEGIN_SRC elisp +(use-package! org-gcal + :after-call (org-agenda +calendar-open-function) + :hook (org-agenda-mode-hook calendar-load-hook) + :config + (setq org-gcal-client-id (password-store-get "GoogleCalendar/id")) + (setq org-gcal-client-secret (password-store-get "GoogleCalendar/secret")) + (setq org-gcal-file-alist '(("aryadevchavali1@gmail.com" . "~/Text/schedule.org")))) +#+END_SRC |