diff options
author | William Carroll <wpcarro@gmail.com> | 2021-12-25T15·37-0400 |
---|---|---|
committer | wpcarro <wpcarro@gmail.com> | 2021-12-25T16·07+0000 |
commit | 1ee31d67fcf6e30e182229ceb9377c647395bfd1 (patch) | |
tree | 7a2843442220ca8d1876a2e128ed6729ccd9225c /users/wpcarro | |
parent | 9888a8819850ceaddd77c82eda7f1862e596fcf1 (diff) |
chore(wpcarro/emacs): Annotate (some of) my Emacs TODOs with wpcarro r/3400
...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
Diffstat (limited to 'users/wpcarro')
-rw-r--r-- | users/wpcarro/emacs/default.nix | 16 |
1 files changed, 10 insertions, 6 deletions
diff --git a/users/wpcarro/emacs/default.nix b/users/wpcarro/emacs/default.nix index 2c6585bec5b0..54c1a50cfa72 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:" ]; |