diff options
author | William Carroll <wpcarro@gmail.com> | 2021-12-24T22·38-0500 |
---|---|---|
committer | clbot <clbot@tvl.fyi> | 2021-12-24T22·41+0000 |
commit | 20bd01db88638bcffc03f6540617d2a7166dbafb (patch) | |
tree | 1e39e07dc2a81ef30b8b541fc76dc5e16b67e465 /users/wpcarro | |
parent | 9df5610cb76fdc934afe418a07b8886513b6c56f (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')
-rw-r--r-- | users/wpcarro/emacs/default.nix | 29 |
1 files changed, 15 insertions, 14 deletions
diff --git a/users/wpcarro/emacs/default.nix b/users/wpcarro/emacs/default.nix index f19306c46141..b12e6410eec6 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; |