init.lua 972 B

12345678910111213141516171819202122232425262728293031323334353637
  1. test = require("test")
  2. test.run()
  3. colors = {
  4. MainBackground = "#0E142E",
  5. MainForeground = "#dddddd",
  6. LineNumberBackground = "#090603",
  7. LineNumberForeground = "#dddddd",
  8. CursorColor = "#777777",
  9. CursorColorWrite = "#dddddd",
  10. PaletteBarBackground = "#3b3b3b",
  11. PaletteBarForeground = "#dddddd",
  12. PaletteInputBackground = "#090603",
  13. PaletteInputForeground = "#dddddd",
  14. InfoMsgBackground = "#090603",
  15. InfoMsgForeground = "#dddddd",
  16. WarnMsgBackground = "#090603",
  17. WarnMsgForeground = "#efc541",
  18. ErrorMsgBackground = "#090603",
  19. ErrorMsgForeground = "#ff5e56",
  20. WorkspaceBackground = "#3b3b3b",
  21. WorkspaceForeground = "#b9b9b9",
  22. WorkspaceBackgroundActive = "#dddddd",
  23. WorkspaceForegroundActive = "#3b3b3b",
  24. TabBackground = "#3b3b3b",
  25. TabForeground = "#b9b9b9",
  26. TabBackgroundActive = "#3b3b3b",
  27. TabForegroundActive = "#dddddd",
  28. }
  29. ms.config.set("properties", {
  30. GutterWidth = 4,
  31. TabSpaces = false,
  32. })
  33. ms.config.set("colors", colors)
  34. -- ms.config.set()