mirror of
https://github.com/pojokcodeid/nvim-lazy.git
synced 2025-06-21 00:25:47 +02:00
54 lines
1.3 KiB
Lua
54 lines
1.3 KiB
Lua
local transparent = false
|
|
local data_exists, custom_ui = pcall(require, "custom.ui")
|
|
if not data_exists then
|
|
return
|
|
end
|
|
local transparent_mode = custom_ui.transparent_mode
|
|
if transparent_mode ~= nil then
|
|
if transparent_mode == 1 then
|
|
transparent = true
|
|
end
|
|
end
|
|
|
|
require("catppuccin").setup({
|
|
flavour = "macchiato", -- latte, frappe, macchiato, mocha
|
|
background = { -- :h background
|
|
light = "latte",
|
|
dark = "macchiato",
|
|
},
|
|
transparent_background = transparent,
|
|
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
|
|
styles = {
|
|
comments = { "italic" },
|
|
conditionals = { "italic" },
|
|
loops = {},
|
|
functions = {},
|
|
keywords = {},
|
|
strings = {},
|
|
variables = {},
|
|
numbers = {},
|
|
booleans = {},
|
|
properties = {},
|
|
types = {},
|
|
operators = {},
|
|
},
|
|
color_overrides = {},
|
|
custom_highlights = {},
|
|
integrations = {
|
|
cmp = true,
|
|
gitsigns = true,
|
|
nvimtree = true,
|
|
telescope = true,
|
|
notify = false,
|
|
mini = false,
|
|
-- For more plugins integrations please scroll down (https://github.com/catppuccin/nvim#integrations)
|
|
},
|
|
})
|