-
Notifications
You must be signed in to change notification settings - Fork 12
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
0 parents
commit 2b95423
Showing
31 changed files
with
5,715 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
*.org linguist-detectable=true |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
.DS_Store | ||
bookmarks | ||
jake-emacs/private.el |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
jake-emacs/init.org |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
|
||
|
||
|
||
|
||
|
||
|
||
.ooooo. ooo. .oo. .oo. .oooo. .ooooo. .oooo.o | ||
d88' `88b `888P"Y88bP"Y88b `P )88b d88' `"Y8 d88( "8 | ||
888ooo888 888 888 888 .oP"888 888 `"Y88b. | ||
888 .o 888 888 888 d8( 888 888 .o8 o. )88b | ||
`Y8bod8P' o888o o888o o888o `Y888""8o `Y8bod8P' 8""888P' | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
|
||
|
||
.ooooo. ooo. .oo. .oo. .oooo. .ooooo. .oooo.o | ||
d88' `88b `888P"Y88bP"Y88b `P )88b d88' `"Y8 d88( "8 | ||
888ooo888 888 888 888 .oP"888 888 `"Y88b. | ||
888 .o 888 888 888 d8( 888 888 .o8 o. )88b | ||
`Y8bod8P' o888o o888o o888o `Y888""8o `Y8bod8P' 8""888P' | ||
|
||
MINIMAL EDITION |
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
;; -*- lexical-binding: t; -*- | ||
|
||
;; -------------------------------------------------------------------------------- ;; | ||
;; This early-init.el file was auto-tangled from an orgmode file. (C) Jake B ;; | ||
;; -------------------------------------------------------------------------------- ;; | ||
|
||
;; setq gc-cons-threshold most-positive-fixnum) | ||
|
||
;; Garbage Collections | ||
(setq gc-cons-percentage 0.6) | ||
|
||
;; Gccemacs | ||
;; (setq comp-async-report-warnings-errors nil) | ||
|
||
;; Compile warnings | ||
;; (setq byte-compile-warnings t) | ||
;; (setq warning-minimum-level :emergency) ;; temporary | ||
|
||
;; Window configuration | ||
(setq frame-inhibit-implied-resize t) ;; Supposed to hasten startup | ||
|
||
;; Hides toolbar, scroll bars | ||
(unless (eq window-system 'ns) | ||
(tool-bar-mode -1)) | ||
(when (fboundp 'scroll-bar-mode) | ||
(scroll-bar-mode -1)) | ||
(when (fboundp 'horizontal-scroll-bar-mode) | ||
(horizontal-scroll-bar-mode -1)) | ||
|
||
;; This makes the Aqua titlebar color the same as Emacs. I don't really like it, for some reason, though I feel like I should. | ||
;; (add-to-list 'default-frame-alist '(ns-transparent-titlebar . t)) |
Oops, something went wrong.