nvim - update colorscheme

This commit is contained in:
Alexander Navarro 2023-08-01 15:04:20 -04:00
parent 1e52c16bbe
commit 2c9cc349ed

View file

@ -1,32 +1,14 @@
local colorscheme = "onedark"
return { return {
"olimorris/onedarkpro.nvim", "catppuccin/nvim",
priority = 1000, priority = 1000,
lazy = false,
opts = { opts = {
options = { flavour = "macchiato",
transparency = true, -- Use a transparentbackground? transparent_background = true,
},
colors = {
bg = "#000000",
fg = "#abb2bf",
red = "#ef596f",
orange = "#fab387",
yellow = "#e5c07b",
green = "#89ca78",
cyan = "#2bbac5",
blue = "#61afef",
purple = "#d55fde",
white = "#abb2bf",
black = "#000000",
gray = "#434852",
highlight = "#e2be7d",
comment = "#7f848e",
none = "NONE",
},
}, },
config = function(_, opts) config = function(_, opts)
require("onedarkpro").setup(opts) require("catppuccin").setup(opts)
vim.cmd.colorscheme(colorscheme) vim.cmd.colorscheme("catppuccin")
end, end,
} }