about summary refs log tree commit diff
path: root/users/wpcarro
diff options
context:
space:
mode:
authorWilliam Carroll <wpcarro@gmail.com>2021-12-16T05·13-0500
committerwpcarro <wpcarro@gmail.com>2021-12-16T22·07+0000
commit305d813a2b118c2fa27f4a710b2abca03ac21fe9 (patch)
tree7bdba2983240c73c4bd6c2f6ddc115f7b488dc77 /users/wpcarro
parent14d5dcbe8f6bb6549c096f45816f4225f4c5e48c (diff)
feat(wpcarro/emacs): Install tvl Elisp r/3278
All I know is that this extends my magit configuration for Gerrit support.

Change-Id: I35c9a264ff25ce6e08b7033e0e022d4047021f05
Reviewed-on: https://cl.tvl.fyi/c/depot/+/4357
Tested-by: BuildkiteCI
Reviewed-by: wpcarro <wpcarro@gmail.com>
Diffstat (limited to 'users/wpcarro')
-rw-r--r--users/wpcarro/emacs/.emacs.d/wpc/wpc-misc.el4
-rw-r--r--users/wpcarro/emacs/default.nix4
2 files changed, 8 insertions, 0 deletions
diff --git a/users/wpcarro/emacs/.emacs.d/wpc/wpc-misc.el b/users/wpcarro/emacs/.emacs.d/wpc/wpc-misc.el
index 5b147dc77d..77ecd3e92e 100644
--- a/users/wpcarro/emacs/.emacs.d/wpc/wpc-misc.el
+++ b/users/wpcarro/emacs/.emacs.d/wpc/wpc-misc.el
@@ -128,6 +128,10 @@
 ;; http
 (use-package request)
 
+;; TVL depot stuff
+(use-package tvl
+  (customize-set-variable 'tvl-depot-path "/home/wpcarro/depot"))
+
 ;; perl-compatible regular expressions
 (use-package pcre2el)
 
diff --git a/users/wpcarro/emacs/default.nix b/users/wpcarro/emacs/default.nix
index b25968ecbf..7114350e62 100644
--- a/users/wpcarro/emacs/default.nix
+++ b/users/wpcarro/emacs/default.nix
@@ -33,6 +33,10 @@ let
   emacsWithPackages = (emacsPackagesGen emacs27).emacsWithPackages;
 
   wpcarrosEmacs = emacsWithPackages (epkgs:
+    (with epkgs.tvlPackages; [
+      tvl
+    ]) ++
+
     (with epkgs.elpaPackages; [
       exwm
     ]) ++