With acf we can make ACF plot in base R graph.
acf
ACF plot
R
x <- lh acf(x)
From the forecast package comes a function ggtsdisplay that plots both ACF and PACF with ggplot. x is the residuals from the model fit (fit$residuals).
ggtsdisplay
ggplot
x
fit$residuals
forecast::ggtsdisplay(x,lag.max=30)