Assume a dataframe and a correlation plot
X <- data.frame("XXXYYY" = rnorm(100, 0, 1),
"XY" = rnorm(100, 0, 1),
"XXXY" = rnorm(100, 0, 1))
corrplot::corrplot(cor(X), method = "color", tl.col = "black")
is it possible, to left-align the labels on the y-axis as below?

Worth considering a
ggplotapproach where you would have a high degree of control over all aspects of the plot including left-alignment of the y-axis text:Created on 2024-03-20 with reprex v2.1.0