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

17 lines
316 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({
transparent_background = true,
integrations = {nvimtree = {transparent_panel = true}}
})
vim.cmd [[colorscheme catppuccin]]
end
return M