first commit
This commit is contained in:
51
nvim/lua/plugins/colorscheme.lua
Executable file
51
nvim/lua/plugins/colorscheme.lua
Executable file
@@ -0,0 +1,51 @@
|
||||
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",
|
||||
-- },
|
||||
-- },
|
||||
-- }
|
||||
Reference in New Issue
Block a user