idk
This commit is contained in:
parent
36c35aa4b6
commit
a6cecb8599
3 changed files with 74 additions and 48 deletions
53
init.el
53
init.el
|
@ -304,7 +304,7 @@
|
|||
(defun chris/open-bible ()
|
||||
"find a bible to open"
|
||||
(interactive)
|
||||
(find-file "~/org/bibles/esv.org")
|
||||
(find-file "~/docs/bibles/esv.org")
|
||||
)
|
||||
|
||||
(defun chris/transpose-lines (arg)
|
||||
|
@ -585,7 +585,8 @@ much faster. The hope is to also make this a faster version of imenu."
|
|||
org-log-into-drawer t
|
||||
org-latex-active-timestamp-format "\\textit{%s}"
|
||||
org-enforce-todo-dependencies t
|
||||
org-export-preserve-breaks t)
|
||||
org-export-preserve-breaks t
|
||||
org-directory "~/docs/notes")
|
||||
|
||||
(add-hook 'org-mode-hook 'chris/org-mode-setup)
|
||||
|
||||
|
@ -651,13 +652,13 @@ much faster. The hope is to also make this a faster version of imenu."
|
|||
(search . " %i %-12:c")))
|
||||
|
||||
(setq org-agenda-category-icon-alist
|
||||
'(("todo" "~/org/icons/task.png" nil nil :ascent center)
|
||||
("lesson" "~/org/icons/book.png" nil nil :ascent center)
|
||||
("dev" "~/org/icons/coding.png" nil nil :ascent center)
|
||||
("TODO" "~/org/icons/coding.png" nil nil :ascent center)))
|
||||
'(("todo" "~/docs/icons/task.png" nil nil :ascent center)
|
||||
("lesson" "~/docs/icons/book.png" nil nil :ascent center)
|
||||
("dev" "~/docs/icons/coding.png" nil nil :ascent center)
|
||||
("TODO" "~/docs/icons/coding.png" nil nil :ascent center)))
|
||||
|
||||
(setq org-imenu-depth 4
|
||||
org-odt-styles-file "/home/chris/org/style.odt"
|
||||
org-odt-styles-file "/home/chris/docs/style.odt"
|
||||
org-export-with-toc nil
|
||||
org-export-with-author nil
|
||||
org-export-with-section-numbers nil
|
||||
|
@ -665,12 +666,11 @@ much faster. The hope is to also make this a faster version of imenu."
|
|||
'((sequence "TODO(t)" "PROJ(p)" "STRT(s)" "WAIT(w)" "HOLD(h)" "|" "DONE(d)" "CNCL(c)")
|
||||
(sequence "[ ](T)" "[-](S)" "[?](W)" "|" "[X](D)"))
|
||||
org-agenda-files
|
||||
'("~/org/todo/todo.org"
|
||||
"~/org/nvtfc_social_media.org"
|
||||
'("~/docs/notes/todo/todo.org"
|
||||
"~/docs/notes/nvtfc_social_media.org"
|
||||
"~/dev/lumina/TODO.org"
|
||||
"~/dev/tfcconnection/TODO.org"
|
||||
"~/org/lessons/"
|
||||
"~/org/")
|
||||
"~/docs/lessons/")
|
||||
org-id-method 'ts
|
||||
org-agenda-tags-column -75
|
||||
org-agenda-dim-blocked-tasks nil
|
||||
|
@ -747,7 +747,7 @@ much faster. The hope is to also make this a faster version of imenu."
|
|||
|
||||
(setq org-publish-project-alist
|
||||
`(("home"
|
||||
:base-directory "~/org/"
|
||||
:base-directory "~/docs/notes/"
|
||||
:base-extension "org"
|
||||
:exclude ".*"
|
||||
:include "index.org"
|
||||
|
@ -759,7 +759,7 @@ much faster. The hope is to also make this a faster version of imenu."
|
|||
:publishing-directory "~/cochrun.xyz/"
|
||||
:publishing-function org-html-publish-to-html)
|
||||
("posts"
|
||||
:base-directory "~/org/"
|
||||
:base-directory "~/docs/notes/"
|
||||
:base-extension "org"
|
||||
:exclude "bibles\\|.st.*\\|.templates"
|
||||
:recursive t
|
||||
|
@ -771,7 +771,7 @@ much faster. The hope is to also make this a faster version of imenu."
|
|||
:publishing-directory "~/cochrun.xyz/content/"
|
||||
:publishing-function org-html-publish-to-html)
|
||||
("static"
|
||||
:base-directory "~/org/"
|
||||
:base-directory "~/docs/notes/"
|
||||
:base-extension "css\\|txt\\|jpg\\|gif\\|png"
|
||||
:exclude "bibles\\|.st.*\\|.templates"
|
||||
:recursive t
|
||||
|
@ -904,7 +904,7 @@ much faster. The hope is to also make this a faster version of imenu."
|
|||
:init
|
||||
(setq org-roam-v2-ack t)
|
||||
:config
|
||||
(setq org-roam-directory "~/org"
|
||||
(setq org-roam-directory "~/docs/notes"
|
||||
org-roam-buffer-width 0.25
|
||||
org-roam-list-files-commands '(fd rg find fdfind)
|
||||
org-roam-file-exclude-regexp '(".stversion/|logseq/|presentations/|.stfolder/|.*~.*|.*sync.*|bibles/")
|
||||
|
@ -1038,13 +1038,24 @@ much faster. The hope is to also make this a faster version of imenu."
|
|||
|
||||
(use-package denote
|
||||
:config
|
||||
(setq denote-directory "/home/chris/org"
|
||||
denote-dired-directories "/home/chris/org"
|
||||
(require 'denote-org-dblock)
|
||||
(setq denote-directory "/home/chris/docs/notes"
|
||||
denote-dired-directories "/home/chris/docs/notes"
|
||||
denote-modules '(project xref ffap)
|
||||
denote-known-keywords '("emacs" "bible" "jesus" "tfc" "lesson" "it" "dev"))
|
||||
|
||||
(setq denote-org-front-matter
|
||||
"#+TITLE: %1$s
|
||||
#+AUTHOR: Chris Cochrun
|
||||
#+CREATED: %2$s
|
||||
#+filetags: %3$s
|
||||
#+identifier: %4$s")
|
||||
:general
|
||||
(chris/leader-keys
|
||||
"no" 'denote-open-or-create))
|
||||
:states 'normal
|
||||
:keymaps 'override
|
||||
"nf" 'denote-open-or-create
|
||||
"nb" 'denote-backlinks))
|
||||
|
||||
(use-package org-present
|
||||
:commands org-present
|
||||
|
@ -1575,7 +1586,7 @@ All my (performant) foldings needs are met between this and `org-show-subtree'
|
|||
(use-package org-re-reveal
|
||||
:ensure nil
|
||||
:config
|
||||
(setq org-re-reveal-root "file:///home/chris/org/presentations/reveal.js/"
|
||||
(setq org-re-reveal-root "file:///home/chris/docs/presentations/reveal.js/"
|
||||
;; org-re-reveal-theme "serif"
|
||||
org-re-reveal-transition "slide"
|
||||
org-re-reveal-mobile-app t
|
||||
|
@ -3423,7 +3434,7 @@ interfere with the default `bongo-playlist-buffer'."
|
|||
(use-package elfeed-org
|
||||
:after elfeed
|
||||
:config
|
||||
(setq rmh-elfeed-org-files (list "~/org/elfeed.org"))
|
||||
(setq rmh-elfeed-org-files (list "~/docs/elfeed.org"))
|
||||
(elfeed-org)
|
||||
(elfeed-update))
|
||||
|
||||
|
@ -3656,7 +3667,7 @@ interfere with the default `bongo-playlist-buffer'."
|
|||
|
||||
(defun chris/find-verse ()
|
||||
(interactive)
|
||||
(find-file "/home/chris/org/bibles/esv.org")
|
||||
(find-file "/home/chris/docs/notes/bibles/esv.org")
|
||||
(list (imenu-choose-buffer-index)))
|
||||
|
||||
;; Reduce rendering/line scan work for Emacs by not rendering cursors or regions
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue