|
@@ -32,9 +32,8 @@ require('telescope').load_extension('fzf')
|
|
|
-- custom picker to fallback to files if no git
|
|
|
local telescope_builtin = require('telescope.builtin')
|
|
|
_G.project_files = function()
|
|
|
- local opts = {}
|
|
|
- local ok = pcall(telescope_builtin.git_files, opts)
|
|
|
- if not ok then telescope_builtin.find_files(opts) end
|
|
|
+ local ok = pcall(telescope_builtin.git_files, { show_untracked = true })
|
|
|
+ if not ok then telescope_builtin.find_files({}) end
|
|
|
end
|
|
|
|
|
|
-- shows added/removed/changed lines
|