mirror of
https://github.com/starr-dusT/dotfiles.git
synced 2025-05-20 11:26:06 -07:00
15 lines
317 B
Lua
15 lines
317 B
Lua
require('telescope').setup {
|
|
extensions = {
|
|
project = {
|
|
base_dirs = {
|
|
'~/.dotfiles',
|
|
'~/devel/work/genisys/splat-react',
|
|
'~/devel/work/genisys/splat-python',
|
|
},
|
|
hidden_files = true,
|
|
sync_with_nvim_tree = true, -- default false
|
|
no_ignore = true,
|
|
}
|
|
}
|
|
}
|