From 22bc1e1879da0d99e5e1d79b10742b8cc9fd0521 Mon Sep 17 00:00:00 2001 From: Case Duckworth Date: Thu, 30 May 2024 12:47:11 -0500 Subject: Initial commit --- emacs.d/early-init.el | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 emacs.d/early-init.el (limited to 'emacs.d/early-init.el') diff --git a/emacs.d/early-init.el b/emacs.d/early-init.el new file mode 100644 index 0000000..7e7c431 --- /dev/null +++ b/emacs.d/early-init.el @@ -0,0 +1,21 @@ +;;; ~/.emacs.d/early-init.el -*- lexical-binding: t -*- +;; Author: Case Duckworth + +(setopt frame-inhibit-implied-resize t) +(setopt frame-resize-pixelwise t) +(setopt window-resize-pixelwise t) +(setopt default-frame-alist + '((background-color . "alice blue") + (font . "Recursive Mono Casual Static 10") + (menu-bar-lines . 0) + (tool-bar-lines . 0) + (vertical-scroll-bars) + (horizontal-scroll-bars))) + +(require 'package) +(add-to-list 'package-archives '("melpa" . "https://melpa.org/packages/") t) +(package-initialize) + +(setopt inhibit-startup-screen t) +(setopt initial-buffer-choice #'eshell) +(setopt initial-scratch-message nil) -- cgit 1.4.1-21-gabe81