diff options
| author | 2025-03-09 22:06:38 +0200 | |
|---|---|---|
| committer | 2025-03-09 23:03:01 +0200 | |
| commit | 8d1283f6478799888e5bd9ad683ad8103f74d05c (patch) | |
| tree | ace87c54d03b8c98fd48d9f7e2f1562973a90bbe | |
| parent | Add server (diff) | |
| download | emacs.d-8d1283f6478799888e5bd9ad683ad8103f74d05c.tar.gz emacs.d-8d1283f6478799888e5bd9ad683ad8103f74d05c.tar.xz emacs.d-8d1283f6478799888e5bd9ad683ad8103f74d05c.zip | |
Add startup, incorporate top-level config
| -rw-r--r-- | init.el | 15 |
1 files changed, 9 insertions, 6 deletions
| @@ -110,6 +110,15 @@ | |||
| 110 | ;; Don't ping random stuff | 110 | ;; Don't ping random stuff |
| 111 | (ffap-machine-p-known 'reject)) | 111 | (ffap-machine-p-known 'reject)) |
| 112 | 112 | ||
| 113 | (use-package startup | ||
| 114 | :defer t | ||
| 115 | :custom | ||
| 116 | (inhibit-default-init t) | ||
| 117 | (inhibit-startup-echo-area-message user-login-name) | ||
| 118 | (inhibit-startup-screen t) | ||
| 119 | (initial-major-mode 'fundamental-mode) | ||
| 120 | (initial-scratch-message nil)) | ||
| 121 | |||
| 113 | ;; Don't draw stuff in other windows. | 122 | ;; Don't draw stuff in other windows. |
| 114 | (setq-default cursor-in-non-selected-windows nil) | 123 | (setq-default cursor-in-non-selected-windows nil) |
| 115 | (setq highlight-nonselected-windows nil) | 124 | (setq highlight-nonselected-windows nil) |
| @@ -133,12 +142,6 @@ | |||
| 133 | w32-pipe-read-delay 0 | 142 | w32-pipe-read-delay 0 |
| 134 | w32-pipe-buffer-size read-process-output-max)) | 143 | w32-pipe-buffer-size read-process-output-max)) |
| 135 | 144 | ||
| 136 | (setq inhibit-startup-screen t | ||
| 137 | inhibit-startup-echo-area-message user-login-name | ||
| 138 | inhibit-default-init t | ||
| 139 | initial-major-mode 'fundamental-mode | ||
| 140 | initial-scratch-message nil) | ||
| 141 | |||
| 142 | ;; Install straight.el | 145 | ;; Install straight.el |
| 143 | (defvar bootstrap-version) | 146 | (defvar bootstrap-version) |
| 144 | (let ((bootstrap-file (expand-file-name "straight/repos/straight.el/bootstrap.el" user-emacs-directory)) | 147 | (let ((bootstrap-file (expand-file-name "straight/repos/straight.el/bootstrap.el" user-emacs-directory)) |