Files
dotfiles/Emacs/.config/emacs/early-init.el
Aryadev Chavali b854e1ccaa (Emacs)~alpha 85 -> 95
Personal theme doesn't work on such a low transparency (I chose
colours that are less vibrant and poppy, going for a low-key theme)
hence set the alpha higher.
2021-07-27 01:35:46 +01:00

15 lines
553 B
EmacsLisp

;;; early-init.el --- My custom early-init.el
;; Author: Aryadev Chavali <aryadev@aryadevchavali.com
;; This file is NOT part of GNU Emacs.
;;; Code:
(setq gc-cons-threshold most-positive-fixnum
package-enable-at-startup nil
frame-inhibit-implied-resize nil
frame-resize-pixelwise t)
(push '(menu-bar-lines . 0) default-frame-alist)
(push '(tool-bar-lines . 0) default-frame-alist)
(push '(vertical-scroll-bars) default-frame-alist)
(push '(alpha . 95) default-frame-alist)
(advice-add #'x-apply-session-resources :override #'ignore)