From 1ee31d67fcf6e30e182229ceb9377c647395bfd1 Mon Sep 17 00:00:00 2001
From: William Carroll <wpcarro@gmail.com>
Date: Sat, 25 Dec 2021 11:37:18 -0400
Subject: [PATCH] chore(wpcarro/emacs): Annotate (some of) my Emacs TODOs with
 wpcarro
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit

...so that they can be properly tracked 🤓

Change-Id: I1e33bd5f0e0a114ef441a5f3f61f387b7afd8708
Reviewed-on: https://cl.tvl.fyi/c/depot/+/4611
Reviewed-by: wpcarro <wpcarro@gmail.com>
Autosubmit: wpcarro <wpcarro@gmail.com>
Tested-by: BuildkiteCI
---
 users/wpcarro/emacs/default.nix | 16 ++++++++++------
 1 file changed, 10 insertions(+), 6 deletions(-)

diff --git a/users/wpcarro/emacs/default.nix b/users/wpcarro/emacs/default.nix
index 2c6585bec..54c1a50cf 100644
--- a/users/wpcarro/emacs/default.nix
+++ b/users/wpcarro/emacs/default.nix
@@ -40,13 +40,15 @@ let
       vterm
       base16-theme
       password-store
-      clipmon # TODO: Prefer an Emacs client for clipmenud.
+      # TODO(wpcarro): Prefer an Emacs client for clipmenud.
+      clipmon
       evil
       evil-collection
       evil-commentary
       evil-surround
       key-chord
-      add-node-modules-path # TODO: Assess whether or not I need this with Nix.
+      # TODO(wpcarro): Assess whether or not I need this with Nix.
+      add-node-modules-path
       web-mode
       rjsx-mode
       tide
@@ -86,13 +88,15 @@ let
       request
       pcre2el
       helpful
-      exec-path-from-shell # TODO: Determine if Nix solves this problem.
+      # TODO(wpcarro): Determine if Nix solves this problem.
+      exec-path-from-shell
       yasnippet
       projectile
       deadgrep
       counsel
       counsel-projectile
-      engine-mode # TODO: Learn what this is.
+      # TODO(wpcarro): Learn what this is.
+      engine-mode
       eglot
       dap-mode
       lsp-ui
@@ -119,7 +123,7 @@ let
     name = "emacs-vendor";
   };
 
-  # TODO: byte-compile these by packaging each as an Elisp library.
+  # TODO(wpcarro): byte-compile these by packaging each as an Elisp library.
   wpcDir = path {
     path = ./.emacs.d/wpc;
     name = "emacs-libs";
@@ -138,7 +142,7 @@ let
   loadPath = concatStringsSep ":" [
     wpcDir
     vendorDir
-    # TODO: Explain why the trailing ":" is needed.
+    # TODO(wpcarro): Explain why the trailing ":" is needed.
     "${wpcarrosEmacs.deps}/share/emacs/site-lisp:"
   ];