That's a different issue: Every time you open a project you have to reload all the packages you need. One way to speed things up is to create a R file that only has the packages you use often, like
library(tidyverse)
library(corrplot)
... (more)
and if you keep it open, it'll be right there to load them when you need them.