summaryrefslogblamecommitdiff
path: root/emacs/custom/fcuny-org.el
blob: 193765264675e5b2b77241a0ff4b2244cf9a3ba3 (plain) (tree)
1
2
3
4
5
6
7
8




                           

                     
                           






                                                                    
 

                                            



                                                 

                                            
 

                                              
 
                    

            

                





                                                                   
 
                                

                                
         


                                               





                                                        
 
         
                                     
 


                               



                                                     
                         
 
                               
                      
                         
 

                          

                               
                                                                                



                                                      
 

                                                                                    


                                                                     
 
                   

                               

                                                                                                                    


                                               
 






                                     

                            
                                                              


                                                   
 




                                                                                   


                                  

                                               

                                       

                                        




                                                    
 
            
                                  
                                                     
                                                                                
 

                                                     
 
                             
 


                        
                                      
 

                        
              
         
                        










                                                                      
 
                    
(require 'fcuny-org-custom)

(use-package org-ml
  :ensure t)

(require 'fcuny-vars)

(defvar fcuny/org-directory
  ;; if we're on a macOS machine, we're using a work machine, so we
  ;; store the notes inside a directory in the workspace. In other
  ;; cases, we store them in ~/documents/notes which is backed up by
  ;; syncthing.
  (if (memq window-system '(mac ns))
      (expand-file-name "~/workspace/notebooks"))
  (expand-file-name "~/documents/notes"))

(defvar fcuny/org-tasks-file
  (concat fcuny/org-directory "/tasks.org"))

(defvar fcuny/org-references-file
  (concat fcuny/org-directory "/references.org"))

(defvar fcuny/org-notes-file
  (concat fcuny/org-directory "/notes.org"))

(defvar fcuny/org-journal-file
  (concat fcuny/org-directory "/journal.org"))

(use-package htmlize
  :ensure t)

(use-package org
  :ensure t
  :mode (("\\.txt\\'" . org-mode))
  :hook ((org-mode                     . org-indent-mode)
         (org-mode                     . org-hide-block-all)
         (org-mode                     . visual-line-mode)
         (org-capture-after-finalize   . org-save-all-org-buffers)
         (org-capture-prepare-finalize . org-save-all-org-buffers))

  :bind (("C-c c" . org-capture)
         ("C-c a" . org-agenda))

  :config
  (defvar load-language-list '((emacs-lisp . t)
                               (python . t)
                               (shell . t)))
  (use-package ob-go
    :ensure t
    :init (cl-pushnew '(go . t) load-language-list))

  (org-babel-do-load-languages 'org-babel-load-languages
                               load-language-list)

  :custom
  (org-directory fcuny/org-directory)

  ;; hide emphasis markup
  (org-hide-emphasis-markers t)

  ;; when archiving, inherit the tags from the parent
  (org-archive-subtree-add-inherited-tags t)

  ;; display unicode characters
  (org-pretty-entities t)

  ;; log the time of completion
  (org-log-done 'time)
  (org-log-into-drawer t)

  (org-startup-indented t)

  (org-cycle-separator-lines 0)
  (org-startup-folded 'content)
  (org-todo-keywords '((type "TODO" "STARTED" "WAITING" "|" "DONE" "CANCELED")))
  (org-todo-keyword-faces
   '(("TODO" . (:foreground "red" :weight bold))
     ("STARTED" . (:foreground "red" :weight bold))
     ("WAITING" . (:foreground "blue" :weight bold))))

  ;; priorities
  (org-priority-start-cycle-with-default nil) ;; Start one over/under default value.
  (org-highest-priority ?A)
  (org-lowest-priority ?D)
  (org-default-priority ?C) ;; Ensures unset tasks have low priority.

  ;; agenda related
  (org-agenda-span 14)
  (org-agenda-show-all-dates t)
  (calendar-week-start-day 1)      ;; org-mode uses calendar for the date picker, and I want this to start on Monday
  (org-agenda-start-on-weekday 1)  ;; this is specific to org-agenda
  (org-agenda-files `(,fcuny/org-notes-file
                      ,fcuny/org-tasks-file
                      ,fcuny/org-journal-file))

  (org-agenda-use-time-grid t)
  (org-agenda-prefix-format
   '((agenda . " %i %-12:c%?-12t% s")
     (todo . " %i %-12:c")
     (tags . " %i %-12:c")
     (search . " %i %-12:c")))

  ;; refile
  (org-refile-use-cache nil)
  (org-refile-targets '((org-agenda-files . (:maxlevel . 3))))
  (org-refile-use-outline-path 'file)
  (org-outline-path-complete-in-steps nil)
  (org-refile-allow-creating-parent-nodes 'confirm)

  ;; org babel related
  ;; prevent the conversion of spaces into tabs (necessary for Python code exports)
  (org-src-fontify-natively t)
  (org-src-preserve-indentation t)
  (org-edit-src-content-indentation t)

  ;; I want to follow links on RET
  (org-return-follows-link t)

  ;; some configurations for exporting document
  (org-export-with-toc nil)
  (org-export-with-section-numbers nil)

  ;; A few abbreviations I use regularly
  (org-link-abbrev-alist
   '(("src"  . "~/workspace/%s")
     ("jira" . "https://jira.twitter.biz/browse/%s")
     ("ph"   . "https://phabricator.twitter.biz/%s")
     ("go"   . "http://go/%s")))

  ;; entries
  (org-blank-before-new-entry nil)
  (org-blank-before-new-entry (quote ((heading . nil)
				                      (plain-list-item . nil))))

  ;; see https://github.com/abo-abo/swiper/issues/986
  (org-goto-interface 'outline-path-completion)

  (org-reverse-note-order t))

(use-package org-bullets
  :ensure t
  :after (org)
  :hook (org-mode . org-bullets-mode))

(use-package org-capture
  :ensure nil
  :after (org)
  :custom
  (org-capture-templates
   `(("t" "Todo [inbox]" entry
      (file+headline ,fcuny/org-tasks-file "Tasks")
      "* TODO [#D] %?\n:PROPERTIES:\n:CREATED: %U\n:END:\n")

     ("n" "Note" entry
      (file ,fcuny/org-notes-file)
      "* NOTE %?\n:PROPERTIES:\n:CREATED: %U\n:END:\n")

     ("j" "Journal" entry
      (file+olp+datetree ,fcuny/org-journal-file)
      "* %?\n:PROPERTIES:\n:CREATED: %U\n:END:\n" :tree-type month))))

(provide 'fcuny-org)