12345678910111213141516171819202122232425262728293031 |
- require("catppuccin").setup({
- flavour = "mocha", -- latte, frappe, macchiato, mocha
- transparent_background = true,
- show_end_of_buffer = false, -- show the '~' characters after the end of buffers
- term_colors = false,
- dim_inactive = {
- enabled = false,
- shade = "dark",
- percentage = 0.15,
- },
- no_italic = false, -- Force no italic
- no_bold = false, -- Force no bold
- no_underline = false, -- Force no underline
- styles = {
- comments = { "italic" },
- },
- integrations = {
- cmp = true,
- gitsigns = true,
- nvimtree = true,
- telescope = true,
- notify = false,
- mini = false,
- },
- })
- -- set colorscheme after options
- vim.cmd('colorscheme catppuccin-mocha')
- -- set lightline theme to horizon
- vim.g.lightline = { colorscheme = "catppuccin-mocha" }
|