summary refs log tree commit diff stats
diff options
context:
space:
mode:
authorCase Duckworth2021-10-06 19:43:20 -0500
committerCase Duckworth2021-10-06 19:43:20 -0500
commitaae6a54aac0367a21925b29a82fd18b359e0ff66 (patch)
tree414ef4e268781ae92fdb3312a2703ad2ac5dc50f
parentAdd README.org (diff)
downloademacs-aae6a54aac0367a21925b29a82fd18b359e0ff66.tar.gz
emacs-aae6a54aac0367a21925b29a82fd18b359e0ff66.zip
Update TODO.org
-rw-r--r--TODO.org116
1 files changed, 73 insertions, 43 deletions
diff --git a/TODO.org b/TODO.org index 081ba03..1759aca 100644 --- a/TODO.org +++ b/TODO.org
@@ -10,18 +10,18 @@
10- [X] and =▬▬▬▬▬▬▬▋ Ò╭╮Ó= 10- [X] and =▬▬▬▬▬▬▬▋ Ò╭╮Ó=
11- [X] Clean up code and package it properly 11- [X] Clean up code and package it properly
12 12
13*** TODO FIX the damn thing Ò╭╮Ó 13*** DONE FIX the damn thing Ò╭╮Ó
14 14
15I just have to make sure it's loading correctly in my own config… bleh 15I just have to make sure it's loading correctly in my own config… bleh
16 16
17- and add: 17- and add:
18 - [ ] =ヽ(°〇°)ノ= 18 - [X] =ヽ(°〇°)ノ=
19 - [ ] =୧((#Φ益Φ#))୨= 19 - [X] =୧((#Φ益Φ#))୨=
20 - [ ] =(╥﹏╥)= 20 - [X] =(╥﹏╥)=
21 - [ ] =Σ ◕ ◡ ◕= 21 - [X] =Σ ◕ ◡ ◕=
22 - [ ] =╭∩╮(︶_︶)╭∩╮= 22 - [X] =╭∩╮(︶_︶)╭∩╮=
23 - [ ] =(งツ)ว= 23 - [X] =(งツ)ว=
24 - [ ] =ʕ ᴖᴥᴖʔ= 24 - [X] =ʕ ᴖᴥᴖʔ=
25 25
26** TODO =append-scratch= mode or something 26** TODO =append-scratch= mode or something
27 27
@@ -54,7 +54,7 @@ allow more configuration of where the mouse goes:
54 54
55* Configuring 55* Configuring
56 56
57** TODO Install =el-patch=? 57** DONE Install =el-patch=?
58 58
59** DONE Look at [[https://gitlab.com/ideasman42/emacs-mode-line-idle][ideasman42 / emacs-mode-line-idle]] 59** DONE Look at [[https://gitlab.com/ideasman42/emacs-mode-line-idle][ideasman42 / emacs-mode-line-idle]]
60 60
@@ -66,11 +66,11 @@ from karthink (and prot)
66 66
67** TODO [[https://github.com/ahungry/md4rd][md4rd]] 67** TODO [[https://github.com/ahungry/md4rd][md4rd]]
68 68
69** TODO [[https://github.com/gRastello/ytel][ytel]] 69** DONE [[https://github.com/gRastello/ytel][ytel]]
70 70
71** TODO [[https://passionsplay.com/blog/create-minimal-emacs-environments-with-a-shell-script/][Create Minimal Emacs Environments with a Shell Script]] 71** TODO [[https://passionsplay.com/blog/create-minimal-emacs-environments-with-a-shell-script/][Create Minimal Emacs Environments with a Shell Script]]
72 72
73** TODO Twitch IRC 73** DONE Twitch IRC
74 74
75- [[https://gist.github.com/hunterbridges/ab095066d40f2e1a243e][How to connect to Twitch with an IRC client (As of Oct 2015) · GitHub]] 75- [[https://gist.github.com/hunterbridges/ab095066d40f2e1a243e][How to connect to Twitch with an IRC client (As of Oct 2015) · GitHub]]
76- irc.twitch.tv 76- irc.twitch.tv
@@ -99,25 +99,41 @@ e.g., “A gold watch” title-cases to “A gold Watch”
99*** Inspo: From wsinatra 99*** Inspo: From wsinatra
100 100
101#+begin_src emacs-lisp 101#+begin_src emacs-lisp
102 ;; Custom capture templates (setq org-capture-templates '(("t" "Todo" entry 102 ;; Custom capture templates
103 (file org-default-notes-file) "* TODO %?\n%u\n%a\n" :clock-in t :clock-resume 103 (setq org-capture-templates
104 t) ("e" "Event" entry (file org-default-notes-file) "* EVENT %? :EVENT:\n%t" 104 '(("t" "Todo" entry (file org-default-notes-file)
105 :clock-in t :clock-resume t) ("i" "Idea" entry (file org-default-notes-file) 105 "* TODO %?\n%u\n%a\n"
106 "* %? :IDEA: \n%t" :clock-in t :clock-resume t) ("p" "Project" entry (file 106 :clock-in t :clock-resume t)
107 org-default-notes-file) "* PROJ %?\n%u\n%a\n" :clock-in t :clock-resume t) 107 ("e" "Event" entry (file org-default-notes-file)
108 ("n" "Next Task" entry (file+headline org-default-notes-file "Tasks") "** 108 "* EVENT %? :EVENT:\n%t"
109 NEXT %? \nDEADLINE: %t"))) #+end_src 109 :clock-in t :clock-resume t)
110 ("i" "Idea" entry (file org-default-notes-file)
111 "* %? :IDEA: \n%t"
112 :clock-in t :clock-resume t)
113 ("p" "Project"
114 entry (file org-default-notes-file)
115 "* PROJ %?\n%u\n%a\n"
116 :clock-in t :clock-resume t)
117 ("n" "Next Task"
118 entry (file+headline org-default-notes-file "Tasks")
119 "** NEXT %? \nDEADLINE: %t")))
120 #+end_src
110 121
111*** Also cf. [[https://blog.jethro.dev/posts/org_mode_workflow_preview/][Org-mode Workflow: A Preview · Jethro Kuan]] 122*** Also cf. [[https://blog.jethro.dev/posts/org_mode_workflow_preview/][Org-mode Workflow: A Preview · Jethro Kuan]]
112 123
113* Buffer display stuff 124* Buffer display stuff
114 125
115#+begin_src emacs-lisp 126#+begin_src emacs-lisp
116 ;; from alphapapa (cl-defun ap/display-buffer-in-side-window (&optional 127 ;; from alphapapa
117 (buffer (current-buffer))) "Display BUFFER in dedicated side window." 128 (cl-defun ap/display-buffer-in-side-window (&optional (buffer (current-buffer)))
118 (interactive) (let ((display-buffer-mark-dedicated t)) 129 "Display BUFFER in dedicated side window."
119 (display-buffer-in-side-window buffer '((side . right) (window-parameters 130 (interactive)
120 (no-delete-other-windows . t)))))) #+end_src 131 (let ((display-buffer-mark-dedicated t))
132 (display-buffer-in-side-window buffer
133 '((side . right)
134 (window-parameters
135 (no-delete-other-windows . t))))))
136 #+end_src
121 137
122- [[https://old.reddit.com/r/emacs/comments/pka1sm/my_first_package_aside_for_easier_configuration/][My first package: Aside, for easier configuration and use of side windows : 138- [[https://old.reddit.com/r/emacs/comments/pka1sm/my_first_package_aside_for_easier_configuration/][My first package: Aside, for easier configuration and use of side windows :
123 emacs]] 139 emacs]]
@@ -137,30 +153,44 @@ e.g., “A gold watch” title-cases to “A gold Watch”
137** A way to map over buffers 153** A way to map over buffers
138 154
139#+begin_src emacs-lisp 155#+begin_src emacs-lisp
140 (dolist (buf (mapcan (lambda (buf) (with-current-buffer buf 156 (dolist (buf (mapcan
141 (circe-server-chat-buffers))) (circe-server-buffers))) 157 (lambda (buf)
142 (with-current-buffer buf ;; whatever u wanna do on 158 (with-current-buffer buf
143 each buffer goes here (lui-set-prompt (concat 159 (circe-server-chat-buffers)))
144 (propertize (acdw-irc/margin-format (buffer-name) "" 160 (circe-server-buffers)))
145 ">") 'face 'circe-prompt-face 'read-only t 'intangible 161 (with-current-buffer buf ;; whatever u wanna do on each buffer goes here
146 t 'cursor-intangible t) " ")) (setq-local 162 (lui-set-prompt (concat
147 fringes-outside-margins t right-margin-width 5 163 (propertize
148 scroll-margin 0 word-wrap t wrap-prefix (repeat-string 164 (acdw-irc/margin-format (buffer-name)
149 acdw-irc/left-margin " ") line-number-mode nil))) 165 ""
150 #+end_src 166 ">")
167 'face 'circe-prompt-face
168 'read-only t
169 'intangible t
170 'cursor-intangible t)
171 " "))
172 (setq-local fringes-outside-margins t
173 right-margin-width 5
174 scroll-margin 0
175 word-wrap t
176 wrap-prefix (repeat-string acdw-irc/left-margin " ")
177 line-number-mode nil)))
178#+end_src
151 179
152** ZNC Connecting (from #systemcrafters) 180** ZNC Connecting (from #systemcrafters)
153 181
154#+begin_quote 182#+begin_quote
155daviwil | minikN: I connect to the hostname/port of my ZNC server, but the 183daviwil | minikN: I connect to the hostname/port of my ZNC server, but the
156 trick is that the username is the nick you want to use on the 184 trick is that the username is the nick you want to use on the
157 server and the password is your znc username and password joined 185 server and the password is your znc username and password joined
158 with a colon, like daviwil:b4dp4ssw0rd minikN | so you don't 186 with a colon, like daviwil:b4dp4ssw0rd
159 specify the network in your password? like user/network:password? 187 minikN | so you don't specify the network in your password? like
160 benoitj | daviwil: nice password you have there daviwil | minikN: 188 user/network:password?
161 nope, I only have one network anyway 189benoitj | daviwil: nice password you have there
162- acdw > daviwil: I just see ******* 190daviwil | minikN: nope, I only have one network anyway
163 benoitj | I use two networks #+end_quote 191- acdw > daviwil: I just see *******
192benoitj | I use two networks
193#+end_quote
164 194
165** Teach =link-hint= about =lui-buttons= 195** Teach =link-hint= about =lui-buttons=
166 196