]> git.earman.xyz Git - emacsinit.git/commitdiff
Cleanup, credits to whattheemacsd.com
authorrearman <rearman@r717.net>
Fri, 18 Nov 2022 15:33:30 +0000 (10:33 -0500)
committerrearman <rearman@r717.net>
Fri, 18 Nov 2022 15:33:30 +0000 (10:33 -0500)
init.el

diff --git a/init.el b/init.el
index 396e9b90c7419f39b3d8399792664bcdedff6b58..659ffbb1fa1a97b29d734d2a4ab3331af4a7c113 100644 (file)
--- a/init.el
+++ b/init.el
@@ -8,7 +8,6 @@
   nil)
 
 (load work-eqns)
-(load editing-defuns)
 
 ;; PACKAGES
 ;; NEW STRAIGHT.EL CONFIG
@@ -154,11 +153,6 @@ Can't go prev line first, edge case of beginning of buffer."
     (setq buffer-offer-save t)
     newbuf))
 
-(defun edit-defuns ()
-  "Bring up editing-defuns.el for editing."
-  (interactive)
-  (find-file editing-defuns))
-
 (defun edit-init ()
   "Bring up init.el for editing."
   (interactive)
@@ -223,6 +217,7 @@ Stolen from http://whattheemacsd.com"
             (setq i (1+ i)))))))
 
 (defadvice magit-status (around magit-fullscreen activate)
+  "Stolen from http://whattheemacsd.com"
   (window-configuration-to-register :magit-fullscreen)
   ad-do-it
   (delete-other-windows))
@@ -254,7 +249,6 @@ Stolen from BrettWitty's dotemacs github repo."
 ;; BINDINGS
 ;; USER SPACE
 (global-set-key (kbd "C-c b") 'buffer-menu-other-window)
-(global-set-key (kbd "C-c ed") 'edit-defuns)
 (global-set-key (kbd "C-c ei") 'edit-init)
 (global-set-key (kbd "C-c ew") 'edit-work-eqs)
 (global-set-key (kbd "C-c r") 'recentf-open-files)