Skip to content

Commit

Permalink
Initial commit
Browse files Browse the repository at this point in the history
  • Loading branch information
jakebox committed Jul 30, 2021
0 parents commit 2b95423
Show file tree
Hide file tree
Showing 31 changed files with 5,715 additions and 0 deletions.
1 change: 1 addition & 0 deletions .gitattributes
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
*.org linguist-detectable=true
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
.DS_Store
bookmarks
jake-emacs/private.el
1 change: 1 addition & 0 deletions README.org
13 changes: 13 additions & 0 deletions banner.txt
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'


9 changes: 9 additions & 0 deletions banner_min.txt
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 added jake-emacs/custom.el
Binary file not shown.
31 changes: 31 additions & 0 deletions jake-emacs/early-init.el
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))
Loading

0 comments on commit 2b95423

Please sign in to comment.