my neovim configuration
at main 581 B view raw
1local M = { 2 "catppuccin/nvim", 3 name = "catppuccin", 4 priority = 1000, 5 opts = { 6 flavour = "mocha", 7 background = { 8 light = "latte", 9 dark = "mocha", 10 }, 11 styles = { 12 comments = { "italic" }, 13 }, 14 transparent_background = true, 15 integrations = { 16 gitsigns = true, 17 treesitter = true, 18 notify = true, 19 blink_cmp = true, 20 snacks = {enabled = true}, 21 which_key = true, 22 }, 23 }, 24 config = function(_, opts) 25 require("catppuccin").setup(opts) 26 vim.cmd.colorscheme("catppuccin-mocha") 27 end, 28} 29 30return M