colorscheme.lua 766 B

1234567891011121314151617181920212223242526272829303132
  1. return {
  2. {
  3. "navarasu/onedark.nvim",
  4. name = "onedark",
  5. lazy = false,
  6. priority = 1000,
  7. config = function()
  8. require('onedark').setup {
  9. style = 'dark',
  10. transparent = true,
  11. -- Change code style ---
  12. -- Options are italic, bold, underline, none
  13. -- You can configure multiple style with comma separated, For e.g., keywords = 'italic,bold'
  14. code_style = {
  15. comments = 'italic',
  16. keywords = 'none',
  17. functions = 'none',
  18. strings = 'none',
  19. variables = 'none'
  20. },
  21. -- Lualine options --
  22. lualine = {
  23. transparent = false, -- lualine center bar transparency
  24. },
  25. }
  26. require('onedark').load()
  27. end,
  28. },
  29. }