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 ]; }