diff options
| author | Nate Cox <nate@natecox.dev> | 2026-05-13 11:25:07 -0700 |
|---|---|---|
| committer | Nate Cox <nate@natecox.dev> | 2026-05-13 11:25:07 -0700 |
| commit | ea73642a3c82b5e58f6f7f42878bc695e7189efe (patch) | |
| tree | 96ec63b2995d15c8972a2c7d4be9a7c4089b62b6 /.emacs.d/early-init.el | |
| download | dotfiles-ea73642a3c82b5e58f6f7f42878bc695e7189efe.tar.bz2 dotfiles-ea73642a3c82b5e58f6f7f42878bc695e7189efe.zip | |
Initial commit
Diffstat (limited to '.emacs.d/early-init.el')
| -rw-r--r-- | .emacs.d/early-init.el | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/.emacs.d/early-init.el b/.emacs.d/early-init.el new file mode 100644 index 0000000..3b52cf2 --- /dev/null +++ b/.emacs.d/early-init.el @@ -0,0 +1,13 @@ +(setq gc-cons-threshold 10000000) +(setq default-frame-alist + '((ns-appearance . dark) + (ns-transparent-titlebar . t))) +(setopt frame-inhibit-implied-resize t) +(setopt frame-resize-pixelwise t) +(setq byte-compile-warnings '(not obsolete)) +(setq warning-suppress-log-types '((comp) (bytecomp))) +(setq native-comp-async-report-warnings-errors 'silent) + +(tool-bar-mode -1) +(menu-bar-mode t) + |
