diff options
author | William Carroll <wpcarro@gmail.com> | 2021-12-16T05·13-0500 |
---|---|---|
committer | wpcarro <wpcarro@gmail.com> | 2021-12-16T22·07+0000 |
commit | 305d813a2b118c2fa27f4a710b2abca03ac21fe9 (patch) | |
tree | 7bdba2983240c73c4bd6c2f6ddc115f7b488dc77 | |
parent | 14d5dcbe8f6bb6549c096f45816f4225f4c5e48c (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>
-rw-r--r-- | users/wpcarro/emacs/.emacs.d/wpc/wpc-misc.el | 4 | ||||
-rw-r--r-- | users/wpcarro/emacs/default.nix | 4 |
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 5b147dc77d8f..77ecd3e92e05 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 b25968ecbf72..7114350e629a 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 ]) ++ |