chadrc.lua 2.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  1. -- vim:fileencoding=utf-8:foldmethod=marker:foldmarker={{{,}}}
  2. -- This file needs to have same structure as nvconfig.lua
  3. -- https://github.com/NvChad/ui/blob/v2.5/lua/nvconfig.lua
  4. -- For try and search themes: "<cmd> Telescope themes"
  5. ---@type ChadrcConfig
  6. local M = {}
  7. -- {{{ Default config
  8. --M.ui = {
  9. -- theme = "onedark",
  10. -- hl_override = {
  11. -- Comment = { italic = true },
  12. -- ["@comment"] = { italic = true },
  13. -- },
  14. --}
  15. -- }}}
  16. -- {{{ sekhali config
  17. local highlights_ = require "custom.highlights"
  18. M.ui = {
  19. theme = "catppuccin",
  20. theme_toggle = { "catppuccin", "onedark" },
  21. -- nvim background transparency
  22. transparency = false,
  23. --statusline = {
  24. -- theme = "vscode_colored",
  25. --},
  26. nvdash = {
  27. load_on_startup = true,
  28. header = {
  29. -- Cause it's wednesday my dudes
  30. "██╗ ██╗███████╗██████╗ ███╗ ██╗███████╗███████╗██████╗ █████╗ ██╗ ██╗",
  31. "██║ ██║██╔════╝██╔══██╗████╗ ██║██╔════╝██╔════╝██╔══██╗██╔══██╗╚██╗ ██╔╝",
  32. "██║ █╗ ██║█████╗ ██║ ██║██╔██╗ ██║█████╗ ███████╗██║ ██║███████║ ╚████╔╝ ",
  33. "██║███╗██║██╔══╝ ██║ ██║██║╚██╗██║██╔══╝ ╚════██║██║ ██║██╔══██║ ╚██╔╝ ",
  34. "╚███╔███╔╝███████╗██████╔╝██║ ╚████║███████╗███████║██████╔╝██║ ██║ ██║ ",
  35. " ╚══╝╚══╝ ╚══════╝╚═════╝ ╚═╝ ╚═══╝╚══════╝╚══════╝╚═════╝ ╚═╝ ╚═╝ ╚═╝ ",
  36. },
  37. },
  38. --hl_override = highlights.override,
  39. --hl_add = highlights.add,
  40. hl_override = highlights_.override,
  41. }
  42. -- }}}
  43. return M