diff options
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) + |
