summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAmin Bandali <bandali@gnu.org>2022-12-27 09:11:47 -0500
committerAmin Bandali <bandali@gnu.org>2022-12-27 09:11:47 -0500
commita567a3276f8d953c60b2ad9a25a6509a90f61034 (patch)
tree69c8741438a86d3d685109ca0b0d02099fb8a602
parentca72d74538ebafbb2ac53c0c4d05089a5cb591ce (diff)
downloadconfigs-a567a3276f8d953c60b2ad9a25a6509a90f61034.tar.gz
configs-a567a3276f8d953c60b2ad9a25a6509a90f61034.tar.xz
configs-a567a3276f8d953c60b2ad9a25a6509a90f61034.zip
A few tiny tweaks
-rw-r--r--.emacs.d/init.el3
-rw-r--r--.emacs.d/lisp/bandali-exwm.el7
2 files changed, 6 insertions, 4 deletions
diff --git a/.emacs.d/init.el b/.emacs.d/init.el
index 310dfde..e23653b 100644
--- a/.emacs.d/init.el
+++ b/.emacs.d/init.el
@@ -272,8 +272,7 @@
(with-eval-after-load 'ediff
(setq ediff-window-setup-function 'ediff-setup-windows-plain
- ediff-split-window-function 'split-window-horizontally)
- (add-hook 'ediff-after-quit-hook-internal #'winner-undo))
+ ediff-split-window-function 'split-window-horizontally))
(with-eval-after-load 'face-remap
(setq
diff --git a/.emacs.d/lisp/bandali-exwm.el b/.emacs.d/lisp/bandali-exwm.el
index 463ebbf..3072765 100644
--- a/.emacs.d/lisp/bandali-exwm.el
+++ b/.emacs.d/lisp/bandali-exwm.el
@@ -27,8 +27,7 @@
(add-to-list 'load-path (b/lisp "xelb"))
(add-to-list 'load-path (b/lisp "exwm"))
(require 'exwm)
-(setq ;; exwm-replace t
- exwm-workspace-show-all-buffers t)
+;; (setq exwm-replace t)
;; make class name the buffer name, truncating beyond 60 characters
(defun b/exwm-rename-buffer ()
(interactive)
@@ -312,6 +311,7 @@ around if needed."
(require 'exwm-edit)
(with-eval-after-load 'exwm-workspace
+ (setq exwm-workspace-show-all-buffers t)
(setq-default
mode-line-format
(append
@@ -321,5 +321,8 @@ around if needed."
" [%s]" (number-to-string
exwm-workspace-current-index)))))))
+(with-eval-after-load 'exwm-layout
+ (setq exwm-layout-show-all-buffers t))
+
(provide 'bandali-exwm)
;;; bandali-exwm.el ends here