2024-09-26 12:46:07 +00:00
|
|
|
-- return {
|
|
|
|
-- "folke/tokyonight.nvim",
|
|
|
|
-- lazy = false,
|
|
|
|
-- priority = 1000,
|
|
|
|
-- opts = {},
|
|
|
|
-- config = function()
|
|
|
|
-- require("tokyonight").setup({
|
|
|
|
-- style = "night",
|
|
|
|
-- light_style = "day",
|
|
|
|
-- transparent = true,
|
|
|
|
-- terminal_colors = true,
|
|
|
|
-- dim_inactive = false,
|
|
|
|
-- lualine_bold = false,
|
|
|
|
-- })
|
|
|
|
--
|
|
|
|
-- vim.cmd [[colorscheme tokyonight]]
|
|
|
|
-- end
|
|
|
|
-- }
|
2024-03-26 11:51:53 +00:00
|
|
|
|
2024-09-26 12:46:07 +00:00
|
|
|
return {
|
2024-09-27 18:32:53 +00:00
|
|
|
{
|
2024-09-26 12:46:07 +00:00
|
|
|
"catppuccin/nvim",
|
|
|
|
name="catppuccin",
|
|
|
|
priority=1000,
|
2024-09-27 18:32:53 +00:00
|
|
|
config = function ()
|
2024-09-26 12:46:07 +00:00
|
|
|
require("catppuccin").setup()
|
2024-09-27 19:08:13 +00:00
|
|
|
vim.cmd.colorscheme('catppuccin')
|
2024-09-27 18:32:53 +00:00
|
|
|
end
|
2024-09-27 19:08:13 +00:00
|
|
|
}
|
2024-09-26 12:46:07 +00:00
|
|
|
}
|