From b5e6c9a784dec03a2f685216da323b8fe6aa3cf0 Mon Sep 17 00:00:00 2001 From: Ethan Girouard Date: Fri, 19 Sep 2025 20:41:55 -0400 Subject: [PATCH] Ignore some common not interesting files in telescope --- config.nix | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/config.nix b/config.nix index 190b6dc..b2818bb 100644 --- a/config.nix +++ b/config.nix @@ -69,6 +69,16 @@ "" = "find_files no_ignore=true"; }; + settings = { + defaults = { + file_ignore_patterns = [ + "^.git/" + "^target/" + "^dist/" + ]; + }; + }; + extensions = { fzf-native = { enable = true;