about summary refs log tree commit diff
path: root/users/wpcarro/emacs
diff options
context:
space:
mode:
authorWilliam Carroll <wpcarro@gmail.com>2021-12-24T22·38-0500
committerclbot <clbot@tvl.fyi>2021-12-24T22·41+0000
commit20bd01db88638bcffc03f6540617d2a7166dbafb (patch)
tree1e39e07dc2a81ef30b8b541fc76dc5e16b67e465 /users/wpcarro/emacs
parent9df5610cb76fdc934afe418a07b8886513b6c56f (diff)
feat(wpcarro/emacs): Require ispell dependency r/3378
Also sort my dependencies, which is why this diff is noisy.

Change-Id: I998ca354d94d4c6283f9fdf76b06c08b9972ced5
Reviewed-on: https://cl.tvl.fyi/c/depot/+/4590
Reviewed-by: wpcarro <wpcarro@gmail.com>
Autosubmit: wpcarro <wpcarro@gmail.com>
Tested-by: BuildkiteCI
Diffstat (limited to 'users/wpcarro/emacs')
-rw-r--r--users/wpcarro/emacs/default.nix29
1 files changed, 15 insertions, 14 deletions
diff --git a/users/wpcarro/emacs/default.nix b/users/wpcarro/emacs/default.nix
index f19306c461..b12e6410ee 100644
--- a/users/wpcarro/emacs/default.nix
+++ b/users/wpcarro/emacs/default.nix
@@ -9,27 +9,28 @@ let
   inherit (pkgs.lib.strings) concatStringsSep makeBinPath;
 
   emacsBinPath = makeBinPath (with pkgs; [
-    ripgrep
     bat
-    fd
-    fzf
-    pass
-    tokei
-    nmap
-    tldr
+    clipmenu
+    direnv
     diskus
-    jq
-    pup
     exa
+    fd
+    fzf
     gitAndTools.hub
-    kubectl
     google-cloud-sdk
-    xsv
+    ispell
+    jq
+    kubectl
+    nix
+    nmap
+    pass
+    pup
+    ripgrep
     scrot
-    clipmenu
+    tldr
+    tokei
     xorg.xset
-    direnv
-    nix
+    xsv
   ]);
 
   emacsWithPackages = (emacsPackagesGen emacs27).emacsWithPackages;