You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

20 lines
309 B
Lua

4 months ago
print("After Telescope")
local telescope = require('telescope')
4 months ago
local builtin = require('telescope.builtin')
telescope.setup({
defaults = {
file_ignore_patterns = {
"__pycache__",
},
preview = {
treesitter = {
enable = {
'python',
}
}
}
},
})