1
Fork 0
satellite/modules/themes/catppuccin/nvim.lua

19 lines
404 B
Lua
Raw Normal View History

local M = {}
2022-07-19 20:19:36 +02:00
M.deps = { { "catppuccin/nvim", as = "catppuccin" } }
2022-05-10 19:04:51 +02:00
function M.setup()
2022-07-19 20:19:36 +02:00
local catppuccin = require("catppuccin")
2022-07-19 20:19:36 +02:00
catppuccin.setup({
compile = { enable = true },
transparent_background = false,
integrations = { nvimtree = { transparent_panel = false } }
})
2022-07-19 20:19:36 +02:00
vim.g.catppuccin_flavour = os.getenv("CATPPUCCIN_FLAVOUR")
vim.cmd [[colorscheme catppuccin]]
end
return M