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.
|
local telescope = require('telescope')
|
|
local builtin = require('telescope.builtin')
|
|
|
|
telescope.setup({
|
|
defaults = {
|
|
file_ignore_patterns = {
|
|
"__pycache__",
|
|
},
|
|
preview = {
|
|
treesitter = {
|
|
enable = {
|
|
'python',
|
|
}
|
|
}
|
|
}
|
|
},
|
|
})
|