@@ -96,6 +96,19 @@ telescope.setup({
find_files = {
find_command = { 'fd', '--type', 'f', '--strip-cwd-prefix' }
},
+ git_files = {
+ -- add --deduplicate so files with merge conflicts don't show up multiple
+ -- times
+ git_command = {
+ 'git',
+ '-c',
+ 'core.quotePath=false',
+ 'ls-files',
+ '--exclude-standard',
+ '--cached',
+ '--deduplicate',
+ }
+ },
git_commits = {
mappings = commit_mappings,