about summary refs log tree commit diff stats
path: root/emacs.d/early-init.el
blob: 7e7c43157611052928ae3e96c6cf0974cd9ad215 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
;;; ~/.emacs.d/early-init.el -*- lexical-binding: t -*-
;; Author: Case Duckworth <acdw@acdw.net>

(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)