From 317f42d5a7751f4e74c3f4bea4546a80d919e181 Mon Sep 17 00:00:00 2001 From: Oscar Wallberg Date: Wed, 30 Apr 2025 20:57:03 +0200 Subject: [PATCH] chore: clean up --- lua/ow/plugins/onedark.lua | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/lua/ow/plugins/onedark.lua b/lua/ow/plugins/onedark.lua index 33c7fab..c48edcb 100644 --- a/lua/ow/plugins/onedark.lua +++ b/lua/ow/plugins/onedark.lua @@ -1,8 +1,7 @@ ---@type LazyPluginSpec return { "navarasu/onedark.nvim", - -- enabled = false, - priority = 1000, -- make sure to load this before all the other start plugins + priority = 1000, config = function() local c = require("onedark.palette").dark local opts = { @@ -14,7 +13,6 @@ return { }, } require("onedark").setup(opts) - -- Enable theme require("onedark").load() end, }