2023-11-19 10:42:53 +00:00
|
|
|
vim.api.nvim_create_autocmd("VimEnter", {
|
|
|
|
callback = function()
|
|
|
|
if vim.fn.argv(0) == 'p' then
|
2024-01-02 17:59:50 +00:00
|
|
|
require("plugins/telescope/custom").project_files()
|
2023-11-19 10:42:53 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
if vim.fn.argv(0) == 'f' then
|
|
|
|
require("telescope.builtin").live_grep()
|
|
|
|
end
|
|
|
|
end,
|
|
|
|
})
|