about summary refs log tree commit diff stats
path: root/emacs.d
diff options
context:
space:
mode:
authorCase Duckworth2024-05-30 12:47:11 -0500
committerCase Duckworth2024-05-30 12:47:11 -0500
commit22bc1e1879da0d99e5e1d79b10742b8cc9fd0521 (patch)
treecd813c6d8bfeebe83901b2d749ce97f1231dd547 /emacs.d
downloaddots-22bc1e1879da0d99e5e1d79b10742b8cc9fd0521.tar.gz
dots-22bc1e1879da0d99e5e1d79b10742b8cc9fd0521.zip
Initial commit
Diffstat (limited to 'emacs.d')
-rw-r--r--emacs.d/early-init.el21
1 files changed, 21 insertions, 0 deletions
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 @@
1;;; ~/.emacs.d/early-init.el -*- lexical-binding: t -*-
2;; Author: Case Duckworth <acdw@acdw.net>
3
4(setopt frame-inhibit-implied-resize t)
5(setopt frame-resize-pixelwise t)
6(setopt window-resize-pixelwise t)
7(setopt default-frame-alist
8 '((background-color . "alice blue")
9 (font . "Recursive Mono Casual Static 10")
10 (menu-bar-lines . 0)
11 (tool-bar-lines . 0)
12 (vertical-scroll-bars)
13 (horizontal-scroll-bars)))
14
15(require 'package)
16(add-to-list 'package-archives '("melpa" . "https://melpa.org/packages/") t)
17(package-initialize)
18
19(setopt inhibit-startup-screen t)
20(setopt initial-buffer-choice #'eshell)
21(setopt initial-scratch-message nil)