1
Fork 0
satellite/dotfiles/neovim/lua/my/plugins/themes/catppuccin.lua

26 lines
546 B
Lua
Raw Normal View History

2023-01-22 01:22:38 +01:00
local H = require("my.plugins.themes.helpers")
local M = {
"catppuccin/nvim",
name = "catppuccin",
lazy = false,
2023-05-24 03:17:09 +02:00
enabled = H.theme_contains("Catppuccin"),
2023-01-22 01:22:38 +01:00
}
function M.config()
local catppuccin = require("catppuccin")
2023-05-24 03:17:09 +02:00
vim.g.catppuccin_flavour = H.variant("Catppuccin")
2023-01-22 01:22:38 +01:00
catppuccin.setup({
2023-08-13 04:15:32 +02:00
transparent_background = true,
2023-01-22 01:22:38 +01:00
integrations = { nvimtree = true },
})
vim.cmd([[highlight NotifyINFOIcon guifg=#d6b20f]])
vim.cmd([[highlight NotifyINFOTitle guifg=#d6b20f]])
vim.cmd("colorscheme catppuccin")
end
return M