nvim-config/lua/custom/plugins/colorscheme.lua
2024-07-11 15:22:38 +02:00

30 lines
568 B
Lua

-- return {
-- {
-- "catppuccin/nvim",
-- name = "catppuccin",
-- lazy = false,
-- priority = 1000,
--
-- config = function()
-- require("catppuccin").setup({
-- flavour = "mocha",
-- transparent_background = true,
-- })
-- vim.cmd.colorscheme 'catppuccin'
-- end,
-- }
-- }
return {
{
'folke/tokyonight.nvim',
lazy = false,
priority = 1000,
config = function()
require('tokyonight').setup {
style = 'moon',
}
vim.cmd [[colorscheme tokyonight]]
end,
},
}