From 92df6c4f9ba46287c07314eaddc18948c14e806f Mon Sep 17 00:00:00 2001 From: Amin Bandali Date: Mon, 5 Aug 2019 19:58:15 -0400 Subject: [PATCH] emacs: minor tweaks --- .emacs.d/init.el | 13 +++++-------- 1 file changed, 5 insertions(+), 8 deletions(-) diff --git a/.emacs.d/init.el b/.emacs.d/init.el index 6bf61e4..6567cd5 100644 --- a/.emacs.d/init.el +++ b/.emacs.d/init.el @@ -435,11 +435,6 @@ For disabling the behaviour for certain buffers and/or modes." ("C-x k" . kill-this-buffer) ("C-x K" . kill-buffer) - ("s-p" . beginning-of-buffer) - ("s-n" . end-of-buffer) - - ("M-O" . facemenu-keymap) - :map emacs-lisp-mode-map ("" . b/add-elisp-section)) @@ -681,7 +676,7 @@ For disabling the behaviour for certain buffers and/or modes." (use-package ibuffer :bind - (("C-x C-b" . ibuffer-other-window) + (("C-x C-b" . ibuffer) :map ibuffer-mode-map ("P" . ibuffer-backward-filter-group) ("N" . ibuffer-forward-filter-group) @@ -1512,11 +1507,12 @@ For disabling the behaviour for certain buffers and/or modes." (use-package window :bind (("s-o" . other-window) - ("M-o" . other-window) ("s-/ ." . split-window-right) ("s-/ ," . split-window-below) ("s-/ 0" . delete-window) - ("s-q" . delete-window))) + ("s-q" . delete-window)) + :custom + (split-width-threshold 150)) (use-package windmove :defer 0.6 @@ -2083,6 +2079,7 @@ https://bandalis.org") (use-package erc-fill :after erc :custom + (erc-fill-column 77) (erc-fill-function 'erc-fill-static) (erc-fill-static-center 18)) -- 2.20.1