From 3f2dcd79b9c17688dee0fcc89299894bbdffd013 Mon Sep 17 00:00:00 2001 From: rearman Date: Fri, 18 Nov 2022 10:33:30 -0500 Subject: [PATCH] Cleanup, credits to whattheemacsd.com --- init.el | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) diff --git a/init.el b/init.el index 396e9b9..659ffbb 100644 --- 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) -- 2.39.5