summaryrefslogtreecommitdiff
path: root/nemacs-boilerplate.el
diff options
context:
space:
mode:
authorChristian Cunningham <cc@localhost>2024-06-01 16:11:59 -0700
committerChristian Cunningham <cc@localhost>2024-06-01 16:11:59 -0700
commit5c1b2a5da3c11f8b2d946219b2afeac526e6627d (patch)
tree2c7ac2846dc0afd1092aded47be928cd10fbe7ef /nemacs-boilerplate.el
parentc5a06aa3b3c6954b806db030900b89428fc05143 (diff)
Rename Config
Diffstat (limited to 'nemacs-boilerplate.el')
-rw-r--r--nemacs-boilerplate.el17
1 files changed, 0 insertions, 17 deletions
diff --git a/nemacs-boilerplate.el b/nemacs-boilerplate.el
deleted file mode 100644
index 30841d1..0000000
--- a/nemacs-boilerplate.el
+++ /dev/null
@@ -1,17 +0,0 @@
-(setq gc-cons-threshold 402653184
- gc-cons-percentage 0.6)
-
-(defvar startup/file-name-handler-alist file-name-handler-alist)
-(setq file-name-handler-alist nil)
-
-(defun startup/revert-file-name-handler-alist ()
- (setq file-name-handler-alist startup/file-name-handler-alist))
-
-(defun startup/reset-gc ()
- (setq gc-cons-threshold 16777216
- gc-cons-percentage 0.1))
-
-(add-hook 'emacs-startup-hook 'startup/revert-file-name-handler-alist)
-(add-hook 'emacs-startup-hook 'startup/reset-gc)
-
-(provide 'nemacs-boilerplate)