-
-
Notifications
You must be signed in to change notification settings - Fork 846
Gallery
Alvaro Muñoz edited this page Oct 9, 2020
·
7 revisions
Some examples of telescope configuration
local dropdown_theme = require('telescope.themes').get_dropdown({
results_height = 20;
winblend = 20;
width = 0.8;
prompt = '';
previewer = false;
borderchars = {
prompt = {'▀', '▐', '▄', '▌', '▛', '▜', '▟', '▙' };
results = {' ', '▐', '▄', '▌', '▌', '▐', '▟', '▙' };
preview = {'▀', '▐', '▄', '▌', '▛', '▜', '▟', '▙' };
};
})
local full_theme = {
winblend = 20;
width = 0.8;
prompt = '';
show_line = false;
results_title = '';
preview_title = '';
borderchars = {
prompt = {'▀', '▐', '▄', '▌', '▛', '▜', '▟', '▙' };
results = {'▀', '▐', '▄', '▌', '▛', '▜', '▟', '▙' };
preview = {'▀', '▐', '▄', '▌', '▛', '▜', '▟', '▙' };
};
}