Another copy of my dotfiles. Because I don't completely trust GitHub.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

50 lines
1.6 KiB

  1. return {
  2. flavour = "mocha", -- latte, frappe, macchiato, mocha
  3. background = { -- :h background
  4. light = "latte",
  5. dark = "mocha",
  6. },
  7. transparent_background = false, -- disables setting the background color.
  8. show_end_of_buffer = false, -- shows the '~' characters after the end of buffers
  9. term_colors = false, -- sets terminal colors (e.g. `g:terminal_color_0`)
  10. dim_inactive = {
  11. enabled = false, -- dims the background color of inactive window
  12. shade = "dark",
  13. percentage = 0.15, -- percentage of the shade to apply to the inactive window
  14. },
  15. no_italic = false, -- Force no italic
  16. no_bold = false, -- Force no bold
  17. no_underline = false, -- Force no underline
  18. styles = { -- Handles the styles of general hi groups (see `:h highlight-args`):
  19. comments = { "italic" }, -- Change the style of comments
  20. conditionals = { "italic" },
  21. loops = {}, functions = {},
  22. keywords = {},
  23. strings = {},
  24. variables = {},
  25. numbers = {},
  26. booleans = {},
  27. properties = {},
  28. types = {},
  29. operators = {},
  30. },
  31. color_overrides = {},
  32. custom_highlights = {},
  33. integrations = {
  34. cmp = true,
  35. gitsigns = true,
  36. treesitter = true,
  37. which_key = true,
  38. alpha=true,
  39. noice = true,
  40. mason = true,
  41. neogit = true,
  42. nvimtree = true,
  43. mini = {
  44. enabled = true,
  45. indentscope_color = "",
  46. },
  47. -- For more plugins integrations please scroll down (https://github.com/catppuccin/nvim#integrations)
  48. },
  49. }