Fix formatting

This commit is contained in:
2023-12-22 23:33:09 +01:00
parent 8ccb9684f5
commit 5d21ded235
3 changed files with 43 additions and 44 deletions
+10 -12
View File
@@ -31,18 +31,16 @@ local function setup()
)
vim.keymap.set(
"n", "<leader>fg", function ()
builtin.live_grep(
{
additional_args = function (_)
return {
"--hidden",
"--iglob=!.venv",
"--iglob=!vendor",
"--iglob=!.git",
}
end,
}
)
builtin.live_grep({
additional_args = function (_)
return {
"--hidden",
"--iglob=!.venv",
"--iglob=!vendor",
"--iglob=!.git",
}
end,
})
end
)
vim.keymap.set("n", "<leader>fb", builtin.buffers)