27 lines
735 B
Lua
27 lines
735 B
Lua
vim.pack.add({
|
|
{ src = "https://github.com/catppuccin/nvim", name = "catppuccin" },
|
|
{ src = "https://github.com/tadaa/vimade", name = "vimade" },
|
|
})
|
|
|
|
require("catppuccin").setup({
|
|
flavour = "mocha",
|
|
transparent_background = true, -- disables setting the background color.
|
|
float = {
|
|
transparent = true, -- enable transparent floating windows
|
|
solid = true, -- use solid styling for floating windows, see |winborder|
|
|
},
|
|
show_end_of_buffer = true, -- shows the '~' characters after the end of buffers
|
|
term_colors = false,
|
|
auto_integrations = true,
|
|
integrations = {
|
|
cmp = true,
|
|
blink_cmp = {
|
|
style = "bordered",
|
|
},
|
|
},
|
|
})
|
|
require("vimade").setup({
|
|
recipe = { "minimalist", { animate = true } },
|
|
fadelevel = 0.8,
|
|
})
|