Not sure what happened here.... O.O
This commit is contained in:
parent
34ab43b8f9
commit
0dbc3ead0e
272 changed files with 4767 additions and 12217 deletions
|
@ -1 +0,0 @@
|
|||
<!-- SC_OFF --><div class="md"><p>I really like the Dark Blue (without italics) <a href="https://marketplace.visualstudio.com/items?itemName=johnpapa.winteriscoming">Winter is Coming theme for VSCode</a> and was wondering if anyone knew of a port for Emacs, or if a similar theme exists out there.</p> <p>Thanks</p> </div><!-- SC_ON -->   submitted by   <a href="https://www.reddit.com/user/dargscisyhp"> /u/dargscisyhp </a> <br/> <span><a href="https://www.reddit.com/r/emacs/comments/rt04rb/is_there_a_winter_is_coming_theme_port_for_emacs/">[link]</a></span>   <span><a href="https://www.reddit.com/r/emacs/comments/rt04rb/is_there_a_winter_is_coming_theme_port_for_emacs/">[comments]</a></span>
|
|
@ -1,12 +0,0 @@
|
|||
<p class="text">I serve at a church alongside several very gifted preachers. Some of them lead our campuses. Others serve in various leadership roles on our staff. They are all good, even very good, and every time one of them preaches when I'm out of the pulpit, my congregation tells me, "They're going to take your job."</p>
|
||||
<p class="text">Truth is, one of them will. In fact, one of them should. One of my most important roles as pastor of Brentwood Baptist Church is preparing the future leaders of this church. I have, in fact, changed my mind on this. I used to think the best pastors were the best preachers.</p>
|
||||
<p class="text">Now, I'm convinced that the best pastors identify, invest in, and prepare the next generation of pastors. Preaching is like a cut flower --it exists in the moment and only in the moment -- without the grounding and fertilization of discipleship in the hearer's life.</p>
|
||||
<p class="text">Jesus modeled this for us. He poured His life into His disciples. More to the point, He focused a lot of His most intimate teaching in the lives of Peter, John, and James, who then became leaders in the early church. Paul poured his life into Timothy and Titus. Throughout the history of the church, the church has found its leaders are those young people who have been spending time with older leaders.</p>
|
||||
<p class="text">When I was a young pastor, I learned to pastor a church from older pastors. For some reason, these old guys liked me, and they would take me to lunch and coffee. During these moments, they would tell me how to visit a hospital, how to respond to a grieving family, how to get a sermon done in the middle of doing everything else required in a local church, and most importantly, how to keep my sanity in the midst of the craziness that exists in every local church.</p>
|
||||
<p class="text">Now, I am the ...</p><p class="more"><a href="https://www.christianitytoday.com/scot-mcknight/2021/november/replaceable.html">Continue reading</a>...</p>
|
||||
<p><br /><a href="https://rss.beaconads.com/click.php?z=1289806&k=c779018782158d93282944b4f7dd4d03&a=190750&c=51506095" target="_blank"><img src="https://rss.beaconads.com/img.php?z=1289806&k=c779018782158d93282944b4f7dd4d03&a=190750&c=51506095" border="0" alt="" /></a></p>
|
||||
|
||||
5
|
||||
|
||||
|
||||
|
|
@ -1 +0,0 @@
|
|||
<!-- SC_OFF --><div class="md"><p>One of my favorite parts of Org-mode is the customizable colored headers; personally, it makes me extremely motivated to work and makes Org-mode so much more beautiful. Here's a quick script I made to make changing those colors easier, and hopefully, someone finds this helpful!</p> <p>​</p> <ol> <li>First, generate a palette you like from this color palette generator: <a href="https://coolors.co">https://coolors.co</a></li> <li>Copy the RGB color codes, separated by hyphens, from the url</li> <li>Paste it into the list in the same format as I have in the below code snippet</li> <li>Copy the code into your init file somewhere</li> </ol> <p>Essentially, the code splits the string into a list of codes, then the face attributes set the org header colors to the corresponding list colors.</p> <p>I'd like to turn this into a package one day, but that's a project for another time (or if someone wants to help me, I'd love to work with them). And finally, if anyone uses this, drop your color palettes below!</p> <p>​</p> <pre><code> (defun col-strip (col-str) (butlast (split-string (mapconcat (lambda (x) (concat "#" x " ")) (split-string col-str "-") "") " "))) (setq color-schemes (list (col-strip "a21d1d-5497de-8e35b7-ffff5b-56cb7d-df5252-707efa") ; red blue purple study (col-strip "2278bf-e15554-3bb273-507c6d-6e5775-598d91-7768ae") ; blue red green okay )) (setq pick-color 0) (setq color-theme (nth pick-color color-schemes)) (set-face-attribute 'org-level-1 nil :height 1.3 :foreground (nth 0 color-theme)) (set-face-attribute 'org-level-2 nil :height 1.2 :foreground (nth 1 color-theme)) (set-face-attribute 'org-level-3 nil :height 1.1 :foreground (nth 2 color-theme)) (set-face-attribute 'org-level-4 nil :height 1.05 :foreground (nth 3 color-theme)) (set-face-attribute 'org-level-5 nil :foreground (nth 4 color-theme)) (set-face-attribute 'org-level-6 nil :foreground (nth 5 color-theme)) </code></pre> </div><!-- SC_ON -->   submitted by   <a href="https://www.reddit.com/user/Pr0Thr0waway"> /u/Pr0Thr0waway </a> <br/> <span><a href="https://www.reddit.com/r/emacs/comments/rg9ojl/a_workflow_to_quickly_change_orgmode_section/">[link]</a></span>   <span><a href="https://www.reddit.com/r/emacs/comments/rg9ojl/a_workflow_to_quickly_change_orgmode_section/">[comments]</a></span>
|
Loading…
Add table
Add a link
Reference in a new issue