1
Fork 0
satellite/modules/themes/catppuccin/nvim.lua
2022-07-19 21:19:36 +03:00

19 lines
404 B
Lua

local M = {}
M.deps = { { "catppuccin/nvim", as = "catppuccin" } }
function M.setup()
local catppuccin = require("catppuccin")
catppuccin.setup({
compile = { enable = true },
transparent_background = false,
integrations = { nvimtree = { transparent_panel = false } }
})
vim.g.catppuccin_flavour = os.getenv("CATPPUCCIN_FLAVOUR")
vim.cmd [[colorscheme catppuccin]]
end
return M