From e15754c83a90a3de4bd31fdec4b6274db3e0d144 Mon Sep 17 00:00:00 2001 From: Dustin Swan Date: Fri, 29 Jan 2021 16:09:28 -0500 Subject: [PATCH] enabling mail on mac, using an emacs package with term, adding rage, etc.OD --- doom/init.el | 4 ++-- home-cli.nix | 7 +++++-- home-mac.nix | 2 +- 3 files changed, 8 insertions(+), 5 deletions(-) diff --git a/doom/init.el b/doom/init.el index 1abff07..c4c8633 100644 --- a/doom/init.el +++ b/doom/init.el @@ -80,7 +80,7 @@ :checkers syntax ; tasing you for every semicolon you forget - spell ; tasing you for misspelling mispelling + (spell +flyspell) ; tasing you for misspelling mispelling ;;grammar ; tasing grammar mistake every you make :tools @@ -145,7 +145,7 @@ markdown ; writing docs for people to ignore ;;nim ; python + lisp at the speed of c nix ; I hereby declare "nix geht mehr!" - ;;ocaml ; an objective camel + ocaml ; an objective camel org ; organize your plain life in plain text ;;php ; perl's insecure younger brother ;;plantuml ; diagrams for confusing people more diff --git a/home-cli.nix b/home-cli.nix index 6cb6156..d8b83a3 100644 --- a/home-cli.nix +++ b/home-cli.nix @@ -2,7 +2,7 @@ { home.packages = with pkgs; [ - ripgrep fd wget silver-searcher tree ranger nodejs yarn mosh w3m urlview nmap tuir gnupg youtube-dl nodePackages.tern nodePackages.eslint nodePackages.javascript-typescript-langserver ffmpeg ispell aspell aspellDicts.en aspellDicts.en-computers aspellDicts.en-science aspellDicts.fr aspellDicts.de aspellDicts.eo aspellDicts.es hexyl nnn entr httpie cacert catimg tldr ffsend du-dust duplicati python3 bitwarden-cli + ripgrep fd wget silver-searcher tree ranger nodejs yarn mosh w3m urlview nmap tuir gnupg youtube-dl nodePackages.tern nodePackages.eslint nodePackages.javascript-typescript-langserver ffmpeg ispell aspell aspellDicts.en aspellDicts.en-computers aspellDicts.en-science aspellDicts.fr aspellDicts.de aspellDicts.eo aspellDicts.es hexyl nnn entr httpie cacert catimg tldr ffsend du-dust duplicati python3 bitwarden-cli rage ]; home.sessionVariables = { @@ -130,7 +130,10 @@ }; }; - programs.emacs.enable = true; + programs.emacs = { + enable = true; + package = ((pkgs.emacsPackagesNgGen pkgs.emacs).emacsWithPackages (epkgs: [ epkgs.vterm ])); + }; programs.neovim = { enable = true; diff --git a/home-mac.nix b/home-mac.nix index 92e1ccd..29f8624 100644 --- a/home-mac.nix +++ b/home-mac.nix @@ -14,5 +14,5 @@ programs.zsh.initExtra = "source ~/.nix-profile/etc/profile.d/nix.sh"; # programs.fish.interactiveShellInit = "source ~/.nix-profile/etc/profile.d/nix.sh"; - imports = [ ./home-cli.nix ./home-gui.nix ]; # ./home-mail.nix ]; + imports = [ ./home-cli.nix ./home-gui.nix ./home-mail.nix ]; }