diff options
author | Gene Pasquet <dev@etenil.net> | 2025-02-11 22:32:24 +0000 |
---|---|---|
committer | Gene Pasquet <dev@etenil.net> | 2025-02-11 22:32:24 +0000 |
commit | 3a7d14ff0088a912a8c0e4b844dc4e661ee97189 (patch) | |
tree | c6f373a4dea8a9d714507f136f3a234f673b7602 /early-init.el | |
parent | 48d65af9a5945b4532965270cb2e0cccd235b606 (diff) |
Refactor the crap out of Bedrock
Diffstat (limited to 'early-init.el')
-rw-r--r-- | early-init.el | 42 |
1 files changed, 0 insertions, 42 deletions
diff --git a/early-init.el b/early-init.el deleted file mode 100644 index 9782b87..0000000 --- a/early-init.el +++ /dev/null @@ -1,42 +0,0 @@ -;;; ________ _______ __ __ -;;; / | / \ / | / | -;;; $$$$$$$$/ _____ ____ ______ _______ _______ $$$$$$$ | ______ ____$$ | ______ ______ _______$$ | __ -;;; $$ |__ / \/ \ / \ / |/ | $$ |__$$ |/ \ / $$ |/ \ / \ / $$ | / | -;;; $$ | $$$$$$ $$$$ |$$$$$$ /$$$$$$$//$$$$$$$/ $$ $$</$$$$$$ /$$$$$$$ /$$$$$$ /$$$$$$ /$$$$$$$/$$ |_/$$/ -;;; $$$$$/ $$ | $$ | $$ |/ $$ $$ | $$ \ $$$$$$$ $$ $$ $$ | $$ $$ | $$/$$ | $$ $$ | $$ $$< -;;; $$ |_____$$ | $$ | $$ /$$$$$$$ $$ \_____ $$$$$$ | $$ |__$$ $$$$$$$$/$$ \__$$ $$ | $$ \__$$ $$ \_____$$$$$$ \ -;;; $$ $$ | $$ | $$ $$ $$ $$ / $$/ $$ $$/$$ $$ $$ $$ | $$ $$/$$ $$ | $$ | -;;; $$$$$$$$/$$/ $$/ $$/ $$$$$$$/ $$$$$$$/$$$$$$$/ $$$$$$$/ $$$$$$$/ $$$$$$$/$$/ $$$$$$/ $$$$$$$/$$/ $$/ - - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -;;; -;;; Basic settings for quick startup and convenience -;;; -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; - -;; Startup speed, annoyance suppression -(setq bedrock--initial-gc-threshold gc-cons-threshold) -(setq gc-cons-threshold 10000000) -(setq byte-compile-warnings '(not obsolete)) -(setq warning-suppress-log-types '((comp) (bytecomp))) -(setq native-comp-async-report-warnings-errors 'silent) - -;; Silence stupid startup message -(setq inhibit-startup-echo-area-message (user-login-name)) - -;; Default frame configuration: full screen, good-looking title bar on macOS -(setq frame-resize-pixelwise t) -(tool-bar-mode -1) ; All these tools are in the menu-bar anyway -(setq default-frame-alist '((fullscreen . maximized) - - ;; You can turn off scroll bars by uncommenting these lines: - ;; (vertical-scroll-bars . nil) - ;; (horizontal-scroll-bars . nil) - - ;; Setting the face in here prevents flashes of - ;; color as the theme gets activated - (background-color . "#000000") - (foreground-color . "#ffffff") - (ns-appearance . dark) - (ns-transparent-titlebar . t))) |