dotfiles/lazyvim/lua/plugins/colorscheme.lua

27 lines
376 B
Lua

return {
-- Tokyo Night Theme
{
"folke/tokyonight.nvim",
lazy = false,
priority = 1000,
opts = {},
},
-- Catppuccin theme
{
"catppuccin/nvim",
name = "catppuccin",
lazy = false,
priority = 1000,
opts = {},
},
-- Set the theme
{
"LazyVim/LazyVim",
opts = {
colorscheme = "catppuccin-macchiato",
},
},
}