summary refs log tree commit diff stats
path: root/early-init.el
diff options
context:
space:
mode:
authorAshley Duckworth2021-01-22 13:07:59 -0600
committerAshley Duckworth2021-01-22 13:07:59 -0600
commit679b0c30dc13a813762bae505bef9ac6911e87c4 (patch)
tree24e92c3cbfea10b4d4768d47c0276e0f492748a5 /early-init.el
parentReorganize early-init and init and add comments (diff)
downloademacs-679b0c30dc13a813762bae505bef9ac6911e87c4.tar.gz
emacs-679b0c30dc13a813762bae505bef9ac6911e87c4.zip
Finally sort out the config.org/el loading thing
Diffstat (limited to 'early-init.el')
-rw-r--r--early-init.el22
1 files changed, 19 insertions, 3 deletions
diff --git a/early-init.el b/early-init.el index 5ebc544..f9486ff 100644 --- a/early-init.el +++ b/early-init.el
@@ -1,16 +1,30 @@
1;; early-init.el -*- no-byte-compile: t; -*- 1;;; early-init.el -*- no-byte-compile: t; -*-
2;; Copyright (C) 2020 Case Duckworth
3
4;; Author: Case Duckworth <acdw@acdw.net>
5;; Created: Sometime during the Covid-19 lockdown, 2019
6;; Keywords: configuration
7;; URL: https://tildegit.org/acdw/emacs
8
9;; This file is not part of GNU Emacs.
10
11;;; Commentary:
2;; This file is automatically tangled from config.org. 12;; This file is automatically tangled from config.org.
3;; Hand edits will be overwritten! 13;; Hand edits will be overwritten!
14
15;;; Code:
16
4;; BOOTSTRAP PACKAGE MANAGEMENT 17;; BOOTSTRAP PACKAGE MANAGEMENT
5(let ((win-app-dir "~/Applications")) 18(let ((win-app-dir "~/Applications"))
6 (dolist (path (list 19 (dolist (path (list
7 ;; Windows 20 ;; Windows
21 (expand-file-name "exe" win-app-dir)
8 (expand-file-name "Git/bin" win-app-dir) 22 (expand-file-name "Git/bin" win-app-dir)
9 (expand-file-name "Git/usr/bin" win-app-dir) 23 (expand-file-name "Git/usr/bin" win-app-dir)
10 (expand-file-name "Git/mingw64/bin" win-app-dir) 24 (expand-file-name "Git/mingw64/bin" win-app-dir)
25 (expand-file-name "Everything" win-app-dir)
11 ;; Linux 26 ;; Linux
12 (expand-file-name "bin" 27 (expand-file-name "bin" user-emacs-directory)
13 user-emacs-directory)
14 (expand-file-name "~/bin") 28 (expand-file-name "~/bin")
15 (expand-file-name "~/.local/bin") 29 (expand-file-name "~/.local/bin")
16 (expand-file-name "~/Scripts") 30 (expand-file-name "~/Scripts")
@@ -68,3 +82,5 @@
68(horizontal-scroll-bar-mode -1) 82(horizontal-scroll-bar-mode -1)
69(setq-default frame-inhibit-implied-resize t 83(setq-default frame-inhibit-implied-resize t
70 frame-resize-pixelwise t) 84 frame-resize-pixelwise t)
85
86;;; early-init.el ends here