mirror of
https://github.com/Hydroxycarbamide/astrovim_user.git
synced 2025-05-04 12:19:08 -04:00
21 lines
443 B
Lua
21 lines
443 B
Lua
return {
|
|
-- You can also add new plugins here as well:
|
|
-- Add plugins, the lazy syntax
|
|
-- "andweeb/presence.nvim",
|
|
-- {
|
|
-- "ray-x/lsp_signature.nvim",
|
|
-- event = "BufRead",
|
|
-- config = function()
|
|
-- require("lsp_signature").setup()
|
|
-- end,
|
|
-- },
|
|
{
|
|
"catppuccin/nvim",
|
|
as = "catppuccin",
|
|
config = function()
|
|
require("catppuccin").setup({
|
|
flavour = "macchiato"
|
|
})
|
|
end,
|
|
},
|
|
}
|