-
Notifications
You must be signed in to change notification settings - Fork 5
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
1 parent
2b53fa6
commit 68d8a76
Showing
95 changed files
with
1,183 additions
and
52 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
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
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,11 @@ | ||
; -*- no-byte-compile: t -*- | ||
(setf load-prefer-newer t) | ||
(package-initialize) | ||
(add-to-list 'load-path "~/.emacs.d/vendor/dash.el") | ||
(add-to-list 'load-path "~/.emacs.d/vendor/packed") | ||
(add-to-list 'load-path "~/.emacs.d/vendor/auto-compile") | ||
(require 'auto-compile) | ||
(auto-compile-on-load-mode) | ||
(auto-compile-on-save-mode) | ||
|
||
(load-file "~/.emacs.d/init.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,2 @@ | ||
*.elc | ||
racket-mode/ |
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 @@ | ||
(setq byte-compile-warnings '(not obsolete)) |
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,10 @@ | ||
(add-to-list 'load-path "~/.emacs.d/lisp") | ||
|
||
(load "personal/packages") | ||
(load "personal/theme") | ||
(load "personal/settings") | ||
(load "personal/functions") | ||
|
||
(let ((custom "~/.emacs_local")) | ||
(when (file-exists-p custom) | ||
(load-file custom))) |
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,6 @@ | ||
(defun kill-other-buffers () | ||
"Kill all other buffers." | ||
(interactive) | ||
(mapc 'kill-buffer | ||
(delq (current-buffer) | ||
(remove-if-not 'buffer-file-name (buffer-list))))) |
Oops, something went wrong.