From d19242048455115999c891d121d04d48335aaec8 Mon Sep 17 00:00:00 2001 From: MrSandman <121260905+mrs4ndman@users.noreply.github.com> Date: Sat, 22 Apr 2023 20:58:40 +0200 Subject: [PATCH] fix: Added require for packer.lua I believe this allows packer to be started when starting the program. In my case it required me to source manually the packer.lua to use the :Packer commands. Please correct me if I'm wrong, but this could be an interesting fix --- lua/theprimeagen/init.lua | 1 + 1 file changed, 1 insertion(+) diff --git a/lua/theprimeagen/init.lua b/lua/theprimeagen/init.lua index 8db3ffac..cd91a773 100644 --- a/lua/theprimeagen/init.lua +++ b/lua/theprimeagen/init.lua @@ -1,5 +1,6 @@ require("theprimeagen.set") require("theprimeagen.remap") +require("theprimeagen.packer") -- DO NOT INCLUDE THIS vim.opt.rtp:append("~/personal/streamer-tools")