diff options
author | Amin Bandali <bandali@gnu.org> | 2023-09-13 21:46:01 -0400 |
---|---|---|
committer | Amin Bandali <bandali@gnu.org> | 2023-09-13 21:46:01 -0400 |
commit | 58a8345e91d628f56875112b2242e8fa75f0003c (patch) | |
tree | 1b44e23afb9bfb7e7c01d4bc553781232d72944e | |
parent | 8bad154d05effa671753e10a429422b14e4aa1da (diff) | |
download | configs-58a8345e91d628f56875112b2242e8fa75f0003c.tar.gz configs-58a8345e91d628f56875112b2242e8fa75f0003c.tar.xz configs-58a8345e91d628f56875112b2242e8fa75f0003c.zip |
Drop some unused bits from init file
-rw-r--r-- | .emacs.d/init.el | 14 |
1 files changed, 1 insertions, 13 deletions
diff --git a/.emacs.d/init.el b/.emacs.d/init.el index f25004e..1383003 100644 --- a/.emacs.d/init.el +++ b/.emacs.d/init.el @@ -501,7 +501,6 @@ for all frames." (global-set-key (kbd "C-c j") #'b/join-line-top) (global-set-key (kbd "C-S-j") #'b/join-line-top) (global-set-key (kbd "C-c s c") #'b/*scratch*) -(global-set-key (kbd "C-c x") #'execute-extended-command) (global-set-key (kbd "C-c v") #'b/invert-default-face) ;; evaling and macro-expanding @@ -877,18 +876,7 @@ for all frames." (global-display-fill-column-indicator-mode 1)) (with-eval-after-load 'window - (setq split-width-threshold 150) - (global-set-key (kbd "C-c w s l") - (lambda () - (interactive) - (split-window-right) - (other-window 1))) - (global-set-key (kbd "C-c w s j") - (lambda () - (interactive) - (split-window-below) - (other-window 1))) - (global-set-key (kbd "C-c w q") #'quit-window)) + (setq split-width-threshold 150)) ;; Uncomment to disable reftex-cite's default choice of previous word. ;; (with-eval-after-load 'reftex |