this repo has no description
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

zettel updates

+46 -3
+41
doom-config/config.el
··· 59 59 60 60 (set-popup-rule! "^\\*Org Agenda" :ignore t) 61 61 62 + 62 63 (after! org 63 64 (setq org-directory (if (string-equal system-type "darwin") "~/developer/src/personal/notes" "~/Documents/notes") 64 65 org-default-notes-file (concat (if (string-equal system-type "darwin") "~/developer/src/personal/notes" "~/Documents/notes") "/inbox.org") ··· 99 100 org-archive-location "TODO-archive::" 100 101 ;; org-archive-save-context-info (quote (time category itags)) 101 102 ) 103 + (setq org-roam-directory (concat org-directory "/zettels/") 104 + org-roam-link-title-format "%s") 102 105 103 106 (setq org-capture-templates 104 107 '( ··· 140 143 "* %U %?\n%i\n%a" :prepend t)) 141 144 ) 142 145 146 + (setq org-roam-capture-templates 147 + '( 148 + ("z" "New Zettel" 149 + plain 150 + (function org-roam--capture-get-point) 151 + "%?" 152 + :file-name "%<%Y%m%d%H%M%S>-${slug}" 153 + :head "#+TITLE: ${title}\n#+roam_tags: \n:PROPERTIES:\n:ID: %(shell-command-to-string \"uuidgen\")\n:CREATED: %U\n:TITLE: ${title}\n:STYLE: zettel\n:END:\n\n** Tags:: \n" 154 + :unarrowed t) 155 + )) 156 + (setq org-roam-capture-ref-templates 157 + '(("r" "Ref" plain (function org-roam--capture-get-point) 158 + "%?" 159 + :file-name "${slug}" 160 + :head "#+ROAM_KEY: ${ref}\n#+TITLE: ${title}\n:PROPERTIES:\n:ID: %(shell-command-to-string \"uuidgen\")\n:CREATED: %U\n:TITLE: ${title}\n:STYLE: zettel\n:END:\n\n** Tags:: [[file:captures.org][captures]]\n" 161 + :unnarrowed t))) 162 + 163 + (setq org-noter-notes-search-path (list (concat org-directory "/zettels/"))) 164 + 143 165 (setq org-agenda-custom-commands 144 166 (quote 145 167 ( ··· 200 222 ))) 201 223 ) 202 224 225 + (use-package! org-roam 226 + :commands (org-roam-insert org-roam-find-file org-roam-switch-to-buffer org-roam) 227 + :hook 228 + (after-init . org-roam-mode) 229 + :custom-face 230 + (org-roam-link ((t (:inherit org-link :foreground "#5afc03"))))) 203 231 232 + (defun my-org-protocol-focus-advice (orig &rest args) 233 + (x-focus-frame nil) 234 + (apply orig args)) 235 + 236 + (advice-add 'org-roam-protocol-open-ref :around 237 + #'my-org-protocol-focus-advice) 238 + (advice-add 'org-roam-protocol-open-file :around 239 + #'my-org-protocol-focus-advice) 240 + 241 + (after! deft 242 + (setq deft-directory org-directory 243 + deft-recursive t 244 + deft-org-mode-title-prefix t)) 204 245 205 246 ;; This determines the style of line numbers in effect. If set to `nil', line 206 247 ;; numbers are disabled. For relative line numbers, set this to `relative'.
+5 -3
doom-config/init.el
··· 25 25 (ivy +fuzzy +icons) ; a search engine for love and life 26 26 27 27 :ui 28 - ;;deft ; notational velocity for Emacs 28 + deft ; notational velocity for Emacs 29 29 doom ; what makes DOOM look the way it does 30 30 doom-dashboard ; a nifty splash screen for Emacs 31 31 doom-quit ; DOOM quit-message prompts when you quit Emacs ··· 94 94 magit ; a git porcelain for Emacs 95 95 make ; run make tasks from Emacs 96 96 ;;pass ; password manager for nerds 97 - ;;pdf ; pdf enhancements 97 + pdf ; pdf enhancements 98 98 ;;prodigy ; FIXME managing external services & code builders 99 99 ;;rgb ; creating color strings 100 100 ;;terraform ; infrastructure as code ··· 144 144 ;;+jupyter ; ipython/jupyter support for babel 145 145 +pandoc ; export-with-pandoc support 146 146 ;;+pomodoro ; be fruitful with the tomato technique 147 - +present) ; using org-mode for presentations 147 + +present 148 + +roam 149 + +noter) ; using org-mode for presentations 148 150 ;;perl ; write code no one else can comprehend 149 151 ;;php ; perl's insecure younger brother 150 152 plantuml ; diagrams for confusing people more