defaults.lua 787 B

12345678910111213141516171819202122232425262728293031323334
  1. return {
  2. leader = "space",
  3. colorscheme = "onedarker",
  4. line_wrap_cursor_movement = true,
  5. transparent_window = false,
  6. format_on_save = true,
  7. keys = {},
  8. builtin = {},
  9. plugins = {
  10. -- use config.lua for this not put here
  11. },
  12. autocommands = {},
  13. lang = {},
  14. log = {
  15. ---@usage can be { "trace", "debug", "info", "warn", "error", "fatal" },
  16. level = "warn",
  17. viewer = {
  18. ---@usage this will fallback on "less +F" if not found
  19. cmd = "lnav",
  20. layout_config = {
  21. ---@usage direction = 'vertical' | 'horizontal' | 'window' | 'float',
  22. direction = "horizontal",
  23. open_mapping = "",
  24. size = 40,
  25. float_opts = {},
  26. },
  27. },
  28. -- currently disabled due to instabilities
  29. override_notify = false,
  30. },
  31. }