diff options
-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 |