local status_ok, actions = pcall(require, "actions-preview")
if not status_ok then
	return
end

actions.setup {
  backend = { "telescope" },
  telescope = require("telescope.themes").get_dropdown {
    borderchars = {
      prompt  = {' ', ' ', ' ', ' ', ' ', ' ', ' ', ' ' };
      results = {' ', ' ', ' ', ' ', ' ', ' ', ' ', ' ' };
      preview = {' ', ' ', ' ', ' ', ' ', ' ', ' ', ' ' };
    },
    layout_strategy = 'cursor',
  }
}