Another copy of my dotfiles. Because I don't completely trust GitHub.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

29 lines
516 B

  1. local options = {
  2. defaults = {
  3. layout_strategy = 'horizontal',
  4. layout_config = {
  5. height = 0.95,
  6. prompt_position = "top"
  7. },
  8. sorting_strategy = "ascending",
  9. color_devicons = true,
  10. mappings = {
  11. },
  12. },
  13. pickers = {
  14. find_files = {
  15. },
  16. man_pages = {
  17. sections = { "2", "3" }
  18. }
  19. },
  20. extensions = {
  21. ["ui-select"] = {
  22. require("telescope.themes").get_dropdown {
  23. }
  24. },
  25. },
  26. extensions_list = { "ui-select", "persisted" },
  27. }
  28. return options