From aa0bf40d34b425a3ce3d3c6d0a8de7af06fccc6d Mon Sep 17 00:00:00 2001 From: Stevan Freeborn <65925598+StevanFreeborn@users.noreply.github.com> Date: Mon, 20 Jan 2025 23:28:39 -0600 Subject: [PATCH] feat: one dark theme --- lua/plugins/themes.lua | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/lua/plugins/themes.lua b/lua/plugins/themes.lua index 8476f2c..4e626de 100644 --- a/lua/plugins/themes.lua +++ b/lua/plugins/themes.lua @@ -17,4 +17,12 @@ return { require("catppuccin").setup() end }, + { + "olimorris/onedarkpro.nvim", + lazy = false, + priority = 1000, + config = function() + require("onedarkpro").setup() + end + } }