From 262e3dd997a88d2544399af4eb2e38b47ef3d8ea Mon Sep 17 00:00:00 2001 From: ACPaul Date: Sat, 7 Mar 2026 13:47:13 -0500 Subject: [PATCH] added apprentice theme --- lua/custom/plugins/init.lua | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/lua/custom/plugins/init.lua b/lua/custom/plugins/init.lua index 9d76cf4b..cccc6082 100644 --- a/lua/custom/plugins/init.lua +++ b/lua/custom/plugins/init.lua @@ -11,6 +11,14 @@ vim.opt.expandtab = true ---@module 'lazy' ---@type LazySpec return { + + { + 'romainl/Apprentice', + lazy = false, + priority = 1000, + config = function() vim.cmd.colorscheme 'apprentice' end, + }, + { 'ThePrimeagen/harpoon', dependencies = { 'nvim-lua/plenary.nvim' },