From 4ecceee495582d9af8a5ec15ed35ed04d4c4b250 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tade=C3=A1=C5=A1?= Date: Wed, 7 Feb 2024 00:33:28 +0100 Subject: [PATCH] Adding colorscheme --- lua/custom/plugins/colorscheme.lua | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 lua/custom/plugins/colorscheme.lua diff --git a/lua/custom/plugins/colorscheme.lua b/lua/custom/plugins/colorscheme.lua new file mode 100644 index 00000000..8b627acc --- /dev/null +++ b/lua/custom/plugins/colorscheme.lua @@ -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, +}