summary refs log tree commit diff
diff options
context:
space:
mode:
-rw-r--r--emacs.d/custom/fcuny-navigation.el3
1 files changed, 2 insertions, 1 deletions
diff --git a/emacs.d/custom/fcuny-navigation.el b/emacs.d/custom/fcuny-navigation.el
index 18ad2de..7671231 100644
--- a/emacs.d/custom/fcuny-navigation.el
+++ b/emacs.d/custom/fcuny-navigation.el
@@ -34,6 +34,7 @@
    ("C-c /"   . counsel-ag)
    ("C-x r l" . counsel-bookmark))
   :custom
+  (counsel-find-file-ignore-regexp "\\.DS_Store\\|\\.localized\\'")
   (counsel-find-file-at-point t)
   (ivy-use-virtual-buffers t)
   (ivy-count-format "(%d/%d) ")
@@ -64,7 +65,7 @@
     ;; omit mode can be toggled using `C-x M-o' in dired buffer.
     (add-hook 'dired-mode-hook #'dired-omit-mode)
     (setq dired-omit-files
-          (concat dired-omit-files "\\|^.DS_STORE$\\|^.localized$\\|^.projectile$\\|^.git$"))))
+          (concat dired-omit-files "\\|^.DS_Store$\\|^.localized$\\|^.projectile$\\|^.git$"))))
 
 (use-package ibuffer
   :bind ("C-x C-b" . ibuffer))