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

17 lines
443 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")
vim.g.catppuccin_flavour = os.getenv("CATPPUCCIN_FLAVOUR")
2022-11-14 01:16:10 +01:00
catppuccin.setup({ transparent_background = false, integrations = { nvimtree = true } })
2022-07-19 20:19:36 +02:00
vim.cmd [[colorscheme catppuccin]]
2022-11-14 01:16:10 +01:00
vim.cmd [[highlight NotifyINFOIcon guifg=#d6b20f]]
vim.cmd [[highlight NotifyINFOTitle guifg=#d6b20f]]
end
return M