plugins.telescope.settings
Options provided to the require('telescope').setup
function.
Type: attribute set of anything
Default:
{ }
Example:
{
defaults = {
file_ignore_patterns = [
"^.git/"
"^.mypy_cache/"
"^__pycache__/"
"^output/"
"^data/"
"%.ipynb"
];
layout_config = {
prompt_position = "top";
};
mappings = {
i = {
"<A-j>" = {
__raw = "require('telescope.actions').move_selection_next";
};
"<A-k>" = {
__raw = "require('telescope.actions').move_selection_previous";
};
};
};
selection_caret = "> ";
set_env = {
COLORTERM = "truecolor";
};
sorting_strategy = "ascending";
};
}
Declared by:
plugins.telescope.settings.defaults
Default configuration for telescope.
Type: null or (attribute set of anything)
Default:
null
Declared by:
plugins.telescope.settings.pickers
Default configuration for builtin pickers.
Type: null or (attribute set of anything)
Default:
null
Declared by: