Initial Commit

This commit is contained in:
agryphus 2023-04-29 05:40:23 -04:00
commit f2ff7bda11
18 changed files with 342 additions and 0 deletions

12
after/plugin/telescope.lua Executable file
View file

@ -0,0 +1,12 @@
local builtin = require("telescope.builtin")
vim.keymap.set("n", "<leader>pf", builtin.find_files, {})
vim.keymap.set("n", "<leader>ps", function()
builtin.grep_string({ search = vim.fn.input("Grep > ") })
end)
require("telescope").setup{
defaults = {
file_ignore_patterns = { ".git\\", ".pyc", ".mypy_cache\\", "node_modules\\", ".svg" }
}
}