/
bluesboy
/
dotfiles
Обзор
Документация
Войти
/
bluesboy
/
dotfiles
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
config/nvim/lua/plugins/ui/catppuccin.lua
57 строк
1 KB
Bluesboy
Remove transparent.nvim and turn on transparency in Catppuccin
11 мар 2026, 02:36
11 мар 2026, 02:36
e42af76
Код
Авторство
О чём код?
return { { "catppuccin/nvim", name = "catppuccin", priority = 1000, opts = { flavour = "macchiato", background = { light = "latte", dark = "mocha", }, transparent_background = true, show_end_of_buffer = false, term_colors = false, dim_inactive = { enabled = false, shade = "dark", percentage = 0.15, }, no_italic = false, no_bold = false, no_underline = false, styles = { comments = { "italic" }, conditionals = { "italic" }, loops = {}, functions = {}, keywords = {}, strings = {}, variables = {}, numbers = {}, booleans = {}, properties = {}, types = {}, operators = {}, }, color_overrides = {}, custom_highlights = {}, default_integrations = true, integrations = { cmp = true, gitsigns = true, nvimtree = true, treesitter = true, notify = false, mini = { enabled = true, indentscope_color = "", }, }, }, config = function(_, opts) require("catppuccin").setup(opts) vim.cmd.colorscheme("catppuccin") end, }, }