colors.lua 721 B

12345678910111213141516171819202122232425262728293031323334
  1. local M = {
  2. {
  3. "EdenEast/nightfox.nvim",
  4. enabled = false,
  5. priority = 1000,
  6. config = function()
  7. vim.cmd("colorscheme nightfox")
  8. vim.api.nvim_set_hl(0, "Visual", { bg = "#1f4b6d", fg = "#ffffff" })
  9. vim.api.nvim_set_hl(0, "VisualNOS", { bg = "#1f4b6d", fg = "#ffffff" })
  10. end,
  11. },
  12. {
  13. "rose-pine/neovim",
  14. name = "rose-pine",
  15. enabled = true,
  16. priority = 1000,
  17. opts = {
  18. variant = "auto",
  19. dark_variant = "main",
  20. groups = {
  21. border = "muted",
  22. panel = "surface",
  23. error = "love",
  24. hint = "iris",
  25. info = "foam",
  26. },
  27. },
  28. config = function()
  29. vim.cmd("colorscheme rose-pine")
  30. end,
  31. },
  32. }
  33. return M