defaults.lua 711 B

1234567891011121314151617181920212223242526272829303132
  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. log = {
  10. ---@usage can be { "trace", "debug", "info", "warn", "error", "fatal" },
  11. level = "warn",
  12. viewer = {
  13. ---@usage this will fallback on "less +F" if not found
  14. cmd = "lnav",
  15. layout_config = {
  16. ---@usage direction = 'vertical' | 'horizontal' | 'window' | 'float',
  17. direction = "horizontal",
  18. open_mapping = "",
  19. size = 40,
  20. float_opts = {},
  21. },
  22. },
  23. },
  24. plugins = {
  25. -- use config.lua for this not put here
  26. },
  27. autocommands = {},
  28. lang = {},
  29. }