aboutsummaryrefslogtreecommitdiff
path: root/zola-static
diff options
context:
space:
mode:
authorJack Jamison <jackqjamison@gmail.com>2025-10-22 20:29:52 -0400
committerJack Jamison <jackqjamison@gmail.com>2025-10-22 20:29:52 -0400
commit388f1645f25f9ec02ce36773a15a8fc1b12fbbf0 (patch)
treef496872642e878f101a2b151163c109198fa6181 /zola-static
parentfbb0bcfa57d72c6b7d7a226e677cfe048c3c2945 (diff)
fix emacs tips
Diffstat (limited to 'zola-static')
-rw-r--r--zola-static/content/blog/my-emacs-tips-and-tricks.md2
-rw-r--r--zola-static/templates/index.html1
2 files changed, 2 insertions, 1 deletions
diff --git a/zola-static/content/blog/my-emacs-tips-and-tricks.md b/zola-static/content/blog/my-emacs-tips-and-tricks.md
index 9d2aced..46ea4e5 100644
--- a/zola-static/content/blog/my-emacs-tips-and-tricks.md
+++ b/zola-static/content/blog/my-emacs-tips-and-tricks.md
@@ -8,7 +8,7 @@ Throughout my time using GNU Emacs and its package ecosystem, I've found some an
# Fixes
## General Stutters (Caused by Garbage Collection)
-Garbage collection stutters is a common problem among Emacs users, and I have a constroversial solution which has worked for me. Basically: **only garbage collect when you are idle** (even for short periods of time). Read more about it [here]((@/blog/emacs-garbage-collection.md).
+Garbage collection stutters is a common problem among Emacs users, and I have a constroversial solution which has worked for me. Basically: **only garbage collect when you are idle** (even for short periods of time). Read more about it [here](@/blog/emacs-garbage-collection.md).
```lisp
(defun my-minibuffer-setup-hook ()
(setq gc-cons-threshold most-positive-fixnum))
diff --git a/zola-static/templates/index.html b/zola-static/templates/index.html
index 8c44fea..d6f1f79 100644
--- a/zola-static/templates/index.html
+++ b/zola-static/templates/index.html
@@ -12,6 +12,7 @@
<h2>Articles</h2>
<ul>
<li><a href="{{ get_url(path='@/blog/sdl-native-wayland.md') }}">Forcing SDL to use Wayland on Wayland</a></li>
+ <li><a href="{{ get_url(path='@/blog/my-emacs-tips-and-tricks.md') }}">My Emacs Tips and Tricks</a></li>
<li><a href="{{ get_url(path='@/blog/emacs-garbage-collection.md') }}">Solving Emacs Garbage Collection Stutters</a></li>
</ul>
</div>