summaryrefslogtreecommitdiffstats
path: root/.emacs.d
diff options
context:
space:
mode:
authorAmin Bandali <bandali@gnu.org>2019-08-05 19:58:15 -0400
committerAmin Bandali <bandali@gnu.org>2019-08-05 19:58:15 -0400
commit92df6c4f9ba46287c07314eaddc18948c14e806f (patch)
treed72d8c0de0082ff566287cb0c1191fbef9f92ad7 /.emacs.d
parent3054f8c9bf3aceef68545ccd4131baa33b1c8d89 (diff)
downloadconfigs-92df6c4f9ba46287c07314eaddc18948c14e806f.tar.gz
configs-92df6c4f9ba46287c07314eaddc18948c14e806f.tar.xz
configs-92df6c4f9ba46287c07314eaddc18948c14e806f.zip
emacs: minor tweaks
Diffstat (limited to '.emacs.d')
-rw-r--r--.emacs.d/init.el13
1 files 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
("<C-return>" . 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))