Adding colorscheme

This commit is contained in:
Tadeáš 2024-02-07 00:33:28 +01:00
parent 7af594fd31
commit 4ecceee495
1 changed files with 12 additions and 0 deletions

View File

@ -0,0 +1,12 @@
return {
"nyoom-engineering/oxocarbon.nvim",
name = "oxocarbon",
lazy = false,
priority = 1000,
config = function()
vim.opt.background = "dark" -- set this to dark or light
vim.cmd.colorscheme "oxocarbon"
vim.api.nvim_set_hl(0, "Normal", { bg = "none" })
vim.api.nvim_set_hl(0, "NormalFloat", { bg = "none" })
end,
}