2024-01-03 15:12:33 +00:00
|
|
|
-- Themery block
|
|
|
|
-- This block will be replaced by Themery.
|
|
|
|
require("catppuccin").setup({
|
|
|
|
flavour = "latte", -- latte, frappe, macchiato, mocha
|
|
|
|
styles = {
|
|
|
|
comments = { "italic" },
|
|
|
|
conditionals = { "italic" },
|
|
|
|
},
|
|
|
|
integrations = {
|
|
|
|
cmp = true,
|
|
|
|
treesitter = true,
|
|
|
|
treesitter_context = true,
|
|
|
|
fidget = true,
|
|
|
|
telescope = true,
|
|
|
|
leap = true,
|
|
|
|
mason = true,
|
|
|
|
native_lsp = {
|
|
|
|
enabled = true,
|
|
|
|
virtual_text = {
|
|
|
|
errors = { "italic" },
|
|
|
|
hints = { "italic" },
|
|
|
|
warnings = { "italic" },
|
|
|
|
information = { "italic" },
|
|
|
|
},
|
|
|
|
underlines = {
|
|
|
|
errors = { "underline" },
|
|
|
|
hints = { "underline" },
|
|
|
|
warnings = { "underline" },
|
|
|
|
information = { "underline" },
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
})
|
2024-02-12 15:05:56 +00:00
|
|
|
vim.opt.background = "light"
|
2024-01-03 15:12:33 +00:00
|
|
|
|
|
|
|
|
|
|
|
vim.cmd("colorscheme catppuccin-latte")
|
|
|
|
vim.g.theme_id = 4
|
|
|
|
-- end themery block
|