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 | { config , pkgs , lib , ... }: let inherit (pkgs) stdenv; nativeCompileDirectory = "${config.xdg.cacheHome}/emacs/native-compile/"; darwinPath = pkgs.runCommandLocal "path_helper " { } '' eval $(/usr/libexec/path_helper) echo -n $PATH > $out ''; 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 ''; desktopApplicationFile = pkgs.writeTextFile { name = "emacsclient.desktop"; destination = "/share/applications/emacsclient.desktop"; text = '' [Desktop Entry] Name=Emacsclient GenericName=Text Editor Comment=Edit text MimeType=text/english;text/plain;text/x-makefile;text/x-c++hdr;text/x-c++src;text/x-chdr;text/x-csrc;text/x-java;text/x-moc;text/x-pascal;text/x-tcl;text/x-tex;application/x-shellscript;text/x-c;text/x-c++; Exec=${editorScript}/bin/edit %F Icon=emacs Type=Application Terminal=false Categories=Development;TextEditor; StartupWMClass=Emacs Keywords=Text;Editor; ''; }; in { imports = [ ../modules/eshell.nix ]; programs.emacs = { enable = true; package = lib.mkDefault (pkgs.emacs.override { withGTK3 = true; }); overrides = self: super: ( { consult-ghq = super.consult-ghq.overrideAttrs (oldAttrs: { src = pkgs.fetchFromGitHub { owner = "alanpearce"; repo = "consult-ghq"; rev = "3a0b366ef2e066c0d941a19d22d5a23d7f778535"; sha256 = "0v7z61nx6xyhxbqkjangqrnay7pp74w4m90wfb29l99p1wkxqbzx"; }; }); } ); 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 $*"; kx = "kubectx $*"; kns = "kubens $*"; cdg = "cd (project-root)"; }; }; extraPackages = epkgs: (with epkgs; [ ace-link apheleia auto-sudoedit avy benchmark-init capf-autosuggest clojure-mode company company-posframe company-shell company-tabnine consult consult-dir consult-ghq consult-eglot crux dired-git-info docker-compose-mode dockerfile-mode dtrt-indent envrc editorconfig eglot eldoc-box emacs-gc-stats 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-matchit evil-mu4e evil-numbers evil-org evil-quickscope evil-space evil-surround evil-textobj-tree-sitter eyebrowse fish-mode format-all flycheck general git-gutter-fringe git-messenger git-modes git-timemachine goto-chg helpful ibuffer-project jinx just-mode justl json-mode lua-mode lispy lispyville magit magit-filenotify markdown-mode marginalia nerd-icons doom-modeline php-mode persist-state posframe quickrun rainbow-mode rainbow-delimiters stimmung-themes toml-mode tree-sitter tree-sitter-langs tree-sitter-indent use-package vertico vertico-prescient wgrep-ag ws-butler which-key yaml-mode ]); extraConfig = '' (with-eval-after-load 'editorconfig (setq editorconfig-exec-path "${pkgs.editorconfig-core-c}/bin/editorconfig")) (when (featurep 'native-compile) (setq native-compile-target-directory "${nativeCompileDirectory}") (add-to-list 'native-comp-eln-load-path "${nativeCompileDirectory}" :append)) '' + lib.optionalString stdenv.isDarwin '' (with-eval-after-load 'files (setq insert-directory-program "${pkgs.coreutils-prefixed}/bin/gls")) (with-eval-after-load 'dired (setq dired-use-ls-dired t)) (setq exec-path (parse-colon-path (setenv "PATH" "${pkgs.lib.readFile darwinPath}"))) ''; }; home.packages = with pkgs; [ editorScript ]; xdg.configFile."emacs/early-init.el" = { source = ../emacs/early-init.el; }; xdg.configFile."emacs/init.el" = { source = ../emacs/init.el; }; home.file.".local/share/applications/emacsclient.desktop" = lib.mkIf stdenv.isLinux { source = desktopApplicationFile; }; } |