chore(telescope): add no_ignore = true option to find_files
This commit is contained in:
parent
754eef18b9
commit
16508476d0
1 changed files with 6 additions and 2 deletions
|
|
@ -27,8 +27,12 @@ return {
|
||||||
}
|
}
|
||||||
end,
|
end,
|
||||||
keys = {
|
keys = {
|
||||||
{ "<C-p>", "<cmd>Telescope find_files<CR>", desc = "Find files" },
|
{ "<C-p>", "<cmd>Telescope find_files<CR>", desc = "Find files" },
|
||||||
{ "<leader>p", "<cmd>Telescope live_grep<CR>", desc = "Live Grep" },
|
{
|
||||||
|
"<leader>p",
|
||||||
|
function() require("telescope.builtin").live_grep({ no_ignore = true }) end,
|
||||||
|
desc = "Live Grep"
|
||||||
|
},
|
||||||
-- Search almost everything (except .git folder)
|
-- Search almost everything (except .git folder)
|
||||||
{
|
{
|
||||||
"<leader>fa",
|
"<leader>fa",
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue