emacs/TODO.org

2.3 KiB

TODO stuff for emacs config

Packages

TODO insert-kaomoji

  • Add ( ¬‿¬)═ɜ ɛ═(⌐‿⌐ ) to list
  • and ▬▬▬▬▬▬▬▋ Ò╭╮Ó
  • Clean up code and package it properly

Configuring

TODO Install el-patch?

Productivity

TODO Set up Org Capture

Inspo: From wsinatra

  ;; Custom capture templates
  (setq org-capture-templates
        '(("t" "Todo" entry (file org-default-notes-file)
           "* TODO %?\n%u\n%a\n" :clock-in t :clock-resume t)
                  ("e" "Event" entry (file org-default-notes-file)
                   "* EVENT %? :EVENT:\n%t" :clock-in t :clock-resume t)
          ("i" "Idea" entry (file org-default-notes-file)
           "* %? :IDEA: \n%t" :clock-in t :clock-resume t)
                  ("p" "Project" entry (file org-default-notes-file)
                   "* PROJ %?\n%u\n%a\n" :clock-in t :clock-resume t)
          ("n" "Next Task" entry (file+headline
  org-default-notes-file "Tasks")
           "** NEXT %? \nDEADLINE: %t")))

Random shit

A way to map over buffers

  (dolist (buf (mapcan (lambda (buf)
                         (with-current-buffer buf
                           (circe-server-chat-buffers)))
                       (circe-server-buffers)))
    (with-current-buffer buf
      ;; whatever u wanna do on each buffer goes here
      (lui-set-prompt
       (concat (propertize (acdw-irc/margin-format (buffer-name)
                                                   ""
                                                   ">")
                           'face 'circe-prompt-face
                           'read-only t 'intangible t
                           'cursor-intangible t)
               " "))
      (setq-local fringes-outside-margins t
                            right-margin-width 5
                            scroll-margin 0
                            word-wrap t
                            wrap-prefix (repeat-string
                                         acdw-irc/left-margin " ")
                            line-number-mode nil)))