From 65f3334c656b595ecfcaa54c7cabf7baeab14617 Mon Sep 17 00:00:00 2001 From: James Cherti <60946298+jamescherti@users.noreply.github.com> Date: Mon, 3 Feb 2025 12:20:56 -0500 Subject: [PATCH] Update dired-omit-files --- init.el | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/init.el b/init.el index f9ae883..8058b52 100644 --- a/init.el +++ b/init.el @@ -422,13 +422,15 @@ (setq dired-clean-confirm-killing-deleted-buffers nil) ;; Dired-omit + (setq dired-omit-verbose nil) (setq dired-omit-files (concat "\\`[.]?#\\|\\`[.][.]?\\'" "\\|\\(?:\\.js\\)?\\.meta\\'" - "\\|\\.\\(?:elc\\|o\\|pyo\\|swp\\|class\\)\\'" + "\\|\\.\\(?:elc|a\\|o\\|pyc\\|pyo\\|swp\\|class\\)\\'" "\\|^\\.DS_Store\\'" "\\|^\\.\\(?:svn\\|git\\)\\'" "\\|^\\.ccls-cache\\'" + "\\|^__pycache__\\'" "\\|^\\.project\\(?:ile\\)?\\'" "\\|^flycheck_.*" "\\|^flymake_.*"))