From 708c1cebb3994989aecf7ebb6651c3429c6e5665 Mon Sep 17 00:00:00 2001 From: histalek Date: Mon, 9 Jan 2023 14:17:46 +0100 Subject: [PATCH] fd: Tweak ignored files --- .config/fd/ignore | 3 +++ .config/nvim/lua/plugins/telescope.lua | 2 +- 2 files changed, 4 insertions(+), 1 deletion(-) create mode 100644 .config/fd/ignore diff --git a/.config/fd/ignore b/.config/fd/ignore new file mode 100644 index 0000000..bdb8576 --- /dev/null +++ b/.config/fd/ignore @@ -0,0 +1,3 @@ +.cache +.cargo +.git diff --git a/.config/nvim/lua/plugins/telescope.lua b/.config/nvim/lua/plugins/telescope.lua index 21cbed7..970852b 100644 --- a/.config/nvim/lua/plugins/telescope.lua +++ b/.config/nvim/lua/plugins/telescope.lua @@ -20,7 +20,7 @@ telescope.setup({ }, pickers = { find_files = { - find_command = { "fd", "--type", "f", "--exclude", "**/.git/", "--strip-cwd-prefix", "--unrestricted" }, + find_command = { "fd", "--type", "f", "--strip-cwd-prefix", "--unrestricted" }, }, }, })