diff options
author | Case Duckworth | 2021-01-02 15:35:47 -0600 |
---|---|---|
committer | Case Duckworth | 2021-01-02 15:36:35 -0600 |
commit | b80d36f5a09490c789563638906cdeac115ff841 (patch) | |
tree | 1a95e20ff6581187b8143f7a5344120dce2047a3 /early-init.el | |
parent | Move header-args to Property drawer (diff) | |
download | emacs-b80d36f5a09490c789563638906cdeac115ff841.tar.gz emacs-b80d36f5a09490c789563638906cdeac115ff841.zip |
Add back early-init.el
There are a few functions that really speed up init when placed in early-init.el, so I put them back in there. Cf. doom-emacs’ early-init for details.
Diffstat (limited to 'early-init.el')
-rw-r--r-- | early-init.el | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/early-init.el b/early-init.el new file mode 100644 index 0000000..7c9c81c --- /dev/null +++ b/early-init.el | |||
@@ -0,0 +1,5 @@ | |||
1 | ;; I use `straight.el' instead of `package.el'. | ||
2 | (setq package-enable-at-startup nil) | ||
3 | |||
4 | ;; Don't resize the frame when loading fonts | ||
5 | (setq frame-inhibit-implied-resize t) | ||