user/settings/emacs.nix (view raw)
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 | { config , pkgs , lib , ... }: let inherit (pkgs) stdenv; editorScript = pkgs.writeScriptBin "edit" '' #!${pkgs.runtimeShell} if [ -z "$1" ]; then exec ${config.programs.emacs.finalPackage}/bin/emacsclient --create-frame --alternate-editor ${config.programs.emacs.finalPackage}/bin/emacs else exec ${config.programs.emacs.finalPackage}/bin/emacsclient --alternate-editor ${config.programs.emacs.finalPackage}/bin/emacs --create-frame "$@" fi ''; in { imports = [ ../modules/eshell.nix ]; programs.git.attributes = [ "*.el diff=elisp" ]; programs.git.extraConfig."diff.elisp" = { xfuncname = "^(((;;;+ )|\\(|([ \t]+\\(((cl-|el-patch-)?def(un|var|macro|method|custom)|gb/))).*)$"; }; services.emacs = lib.mkIf stdenv.isLinux { enable = true; package = config.programs.emacs.finalPackage; client.enable = true; }; programs.emacs = { enable = true; package = lib.mkDefault (pkgs.emacs29.override { withGTK3 = true; }); eshell = { aliases = { pk = "eshell-up-pk $1"; up = "eshell-up $1"; ec = "find-file $1"; l = "ls $*"; la = "ls -A $*"; ll = "ls -lh $*"; lla = "ls -lhA $*"; http = "xh"; https = "xh --default-scheme https $*"; xhs = "xh --default-scheme https $*"; ava = "npx ava $*"; bunyan = "npx bunyan $*"; mocha = "npx mocha $*"; standard = "npx standard $*"; tsc = "npx tsc $*"; tslnt = "npx tslnt $*"; tsnode = "npx tsnode $*"; cdg = "cd (project-root)"; }; }; extraPackages = epkgs: (with epkgs; [ ace-link apheleia astro-ts-mode avy benchmark-init cape clojure-mode cask-mode chatgpt-shell corfu consult consult-dir consult-ghq consult-eglot consult-lsp crux dired-git-info docker-compose-mode dtrt-indent envrc editorconfig eldoc-box embark embark-consult esh-buf-stack esh-help eshell-fringe-status eshell-toggle eshell-up evil evil-anzu evil-collection evil-commentary evil-embrace evil-exchange evil-lion evil-matchit evil-mu4e evil-numbers evil-org evil-quickscope evil-space evil-surround evil-textobj-tree-sitter expand-region eyebrowse fish-mode feature-mode format-all flycheck flymake-popon general git-gutter-fringe git-modes git-timemachine gl-conf-mode # gitolite goto-chg helpful jinx just-ts-mode justl kind-icon lua-mode lsp-mode lispyville magit magit-todos markdown-mode marginalia nerd-icons nix-ts-mode orderless doom-modeline php-mode persist-state posframe quickrun rainbow-mode rainbow-delimiters ssh-deploy stimmung-themes systemd tempel tempel-collection eglot-tempel treemacs treemacs-evil treemacs-magit treemacs-nerd-icons treesit-grammars.with-all-grammars treesit-auto try vc-msg vertico vertico-prescient wgrep-ag ws-butler which-key yasnippet yasnippet-capf ]); overrides = self: super: { apheleia = self.melpaPackages.apheleia.overrideAttrs (old: { patchPhase = '' substituteInPlace apheleia-formatters.el \ --replace-fail '"prettier"' '"prettierd"' ''; }); treemacs-nerd-icons = self.melpaPackages.treemacs-nerd-icons.overrideAttrs (old: { src = pkgs.fetchFromGitHub { owner = "aaronmiller"; repo = "treemacs-nerd-icons"; sha256 = "171pdi5y9zym26iqi02c5p7zw9i7xxhv4csnjb7qlkkczha17jgp"; rev = "90b4f0868eea1ea923dee97d2c5457c21a61f37a"; # date = "2023-11-02T13:42:55-04:00"; }; }); lsp-mode = self.melpaPackages.lsp-mode.overrideAttrs { LSP_USE_PLISTS = "true"; # must be set in early-init }; tabnine = self.melpaPackages.tabnine.overrideAttrs (attrs: { postPatch = (attrs.postPatch or "") + '' substituteInPlace tabnine-core.el \ --replace '(tabnine--executable-path)' '"${pkgs.tabnine}/bin/TabNine"' ''; }); }; extraConfig = '' (with-eval-after-load 'editorconfig (setq editorconfig-exec-path "${pkgs.editorconfig-core-c}/bin/editorconfig")) '' + lib.optionalString stdenv.isDarwin '' (with-eval-after-load 'dired (setq insert-directory-program "${pkgs.coreutils-prefixed}/bin/gls" dired-use-ls-dired t)) ''; }; home.packages = with pkgs; [ editorScript enchant ]; xdg.configFile."raycast/scripts/Emacs" = { executable = true; source = ../emacs/raycast-script.applescript; }; xdg.configFile."emacs/early-init.el" = { source = ../emacs/early-init.el; }; xdg.configFile."emacs/init.el" = { source = ../emacs/init.el; }; } |