diff options
author | Case Duckworth | 2022-01-03 22:31:56 -0600 |
---|---|---|
committer | Case Duckworth | 2022-01-03 22:31:56 -0600 |
commit | 9c6bd60e2db90d38f8528fa8b6dbc96be751382f (patch) | |
tree | 01e579ebd5f79396d1310f3adb51cc3713d43e36 | |
parent | Change fonts... again (diff) | |
download | emacs-9c6bd60e2db90d38f8528fa8b6dbc96be751382f.tar.gz emacs-9c6bd60e2db90d38f8528fa8b6dbc96be751382f.zip |
Re-indent
-rw-r--r-- | early-init.el | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/early-init.el b/early-init.el index 2c9d2e6..da5d73c 100644 --- a/early-init.el +++ b/early-init.el | |||
@@ -55,16 +55,16 @@ See `no-littering' for examples.") | |||
55 | ;;; Default frame settings | 55 | ;;; Default frame settings |
56 | 56 | ||
57 | (setq default-frame-alist '((tool-bar-lines . 0) | 57 | (setq default-frame-alist '((tool-bar-lines . 0) |
58 | (menu-bar-lines . 0) | 58 | (menu-bar-lines . 0) |
59 | (vertical-scroll-bars) | 59 | (vertical-scroll-bars) |
60 | (horizontal-scroll-bars)) | 60 | (horizontal-scroll-bars)) |
61 | frame-inhibit-implied-resize t | 61 | frame-inhibit-implied-resize t |
62 | frame-resize-pixelwise t | 62 | frame-resize-pixelwise t |
63 | window-resize-pixelwise t | 63 | window-resize-pixelwise t |
64 | inhibit-x-resources t | 64 | inhibit-x-resources t |
65 | indicate-empty-lines nil | 65 | indicate-empty-lines nil |
66 | indicate-buffer-boundaries '((top . right) | 66 | indicate-buffer-boundaries '((top . right) |
67 | (bottom . right))) | 67 | (bottom . right))) |
68 | 68 | ||
69 | ;; Fonts | 69 | ;; Fonts |
70 | 70 | ||
@@ -84,9 +84,9 @@ See `no-littering' for examples.") | |||
84 | (setq package-enable-at-startup nil | 84 | (setq package-enable-at-startup nil |
85 | package-quickstart nil | 85 | package-quickstart nil |
86 | straight-host-usernames '((github . "duckwork") | 86 | straight-host-usernames '((github . "duckwork") |
87 | (gitlab . "acdw")) | 87 | (gitlab . "acdw")) |
88 | straight-check-for-modifications '(check-on-save | 88 | straight-check-for-modifications '(check-on-save |
89 | find-when-checking)) | 89 | find-when-checking)) |
90 | 90 | ||
91 | (setq no-littering-etc-directory .etc | 91 | (setq no-littering-etc-directory .etc |
92 | no-littering-var-directory .etc | 92 | no-littering-var-directory .etc |
@@ -117,8 +117,8 @@ See `no-littering' for examples.") | |||
117 | (require 'straight-x) | 117 | (require 'straight-x) |
118 | 118 | ||
119 | (dolist (pkg '(el-patch | 119 | (dolist (pkg '(el-patch |
120 | no-littering | 120 | no-littering |
121 | setup)) | 121 | setup)) |
122 | (straight-use-package pkg) | 122 | (straight-use-package pkg) |
123 | (require pkg) | 123 | (require pkg) |
124 | (require (intern (format "+%s" pkg)) nil :noerror)) | 124 | (require (intern (format "+%s" pkg)) nil :noerror)) |