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

18 lines
381 B
Lua
Raw Normal View History

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