Files
dotfiles/nvim/lua/plugins/colorscheme.lua
2025-06-14 20:26:14 +02:00

52 lines
940 B
Lua
Executable File

return {
{
"catppuccin/nvim",
opts = {
flavor = "mocah",
transparent_background = true,
styles = {
functions = { "bold" },
keywords = { "bold" },
},
},
},
-- {
-- "olimorris/onedarkpro.nvim",
-- priority = 1000, -- Ensure it loads first
-- config = function()
-- require("onedarkpro").setup({
-- options = {
-- transparency = true,
-- },
-- styles = {
-- comments = "italic",
-- keywords = "bold",
-- },
-- })
-- require("onedarkpro").load()
-- end,
-- },
{
"LazyVim/LazyVim",
opts = {
colorscheme = "catppuccin",
},
},
}
-- return {
-- {
-- "folke/tokyonight.nvim",
-- lazy = true,
-- opts = {
-- style = "moon",
-- },
-- },
-- {
-- "LazyVim/LazyVim",
-- opts = {
-- colorscheme = "tokyonight",
-- },
-- },
-- }