feat: nvim telescope overwrite .gitignore

This commit is contained in:
AngeD 2022-10-24 17:23:49 +02:00
parent c786785b9c
commit 8977b0acb8

View File

@ -1,5 +1,11 @@
vim.cmd("packadd telescope")
require"telescope".setup {}
require"telescope".setup {
pickers = {
find_files = {
find_command = {"find", ".", "-type", "f"}
}
}
}
local builtin = require("telescope.builtin")