From e9a2f811b7d030cb8701bd8459fd5c842a521eff Mon Sep 17 00:00:00 2001 From: Alexander Neonxp Kiryukhin Date: Tue, 13 May 2025 10:07:17 +0300 Subject: =?UTF-8?q?=D0=9F=D1=80=D0=B0=D0=B2=D0=BA=D0=B8=20nvim=20=D0=BA?= =?UTF-8?q?=D0=BE=D0=BD=D1=84=D0=B8=D0=B3=D0=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- nvim/lua/plugins/theme.lua | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 nvim/lua/plugins/theme.lua (limited to 'nvim/lua/plugins/theme.lua') diff --git a/nvim/lua/plugins/theme.lua b/nvim/lua/plugins/theme.lua new file mode 100644 index 0000000..72a6f81 --- /dev/null +++ b/nvim/lua/plugins/theme.lua @@ -0,0 +1,21 @@ +return { + "navarasu/onedark.nvim", + priority = 1000, -- make sure to load this before all the other start plugins + config = function() + require("onedark").setup({ + style = "darker", + colors = { + bright_orange = "#ff8800", -- define a new color + }, + highlights = { + -- ["@lsp.type.keyword"] = { fg = "$green", fmt = "bold,underline" }, + -- ["@lsp.type.property"] = { fg = "$bright_orange", bg = "#00ff00", fmt = "bold" }, + -- ["@lsp.type.function"] = { fg = "#0000ff", sp = "$cyan", fmt = "underline,italic" }, + -- ["@lsp.type.method"] = { link = "@function" }, + -- To add language specific config + -- ["@lsp.type.variable.go"] = { fg = "none" }, + }, + }) + require("onedark").load() + end, +} -- cgit v1.2.3