From 7f3bb574f733ea934ba9aa660a5adcd38d05eb24 Mon Sep 17 00:00:00 2001 From: gered Date: Tue, 3 Dec 2024 17:52:49 -0500 Subject: [PATCH] allow dired sidebar to be manually resized --- emacs.d/dired.el | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/emacs.d/dired.el b/emacs.d/dired.el index bbf94b8..5f52381 100644 --- a/emacs.d/dired.el +++ b/emacs.d/dired.el @@ -51,4 +51,7 @@ (auto-revert-mode)))) :config (push 'toggle-window-split dired-sidebar-toggle-hidden-commands) - (push 'rotate-windows dired-sidebar-toggle-hidden-commands)) + (push 'rotate-windows dired-sidebar-toggle-hidden-commands) + ;; allow the sidebar to be manually resized + (setq dired-sidebar-window-fixed nil) + (setq dired-sidebar-width 25))