31 lines
737 B
Lua
31 lines
737 B
Lua
-- 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
|
|
-- }
|
|
|
|
return {
|
|
{
|
|
"catppuccin/nvim",
|
|
name="catppuccin",
|
|
priority=1000,
|
|
config = function ()
|
|
require("catppuccin").setup()
|
|
vim.cmd.colorscheme = "catppuccin"
|
|
end
|
|
}
|
|
}
|