Not too sure whether to post this as an issue or how to troubleshoot this.
Certain plots drawn with tibbles created by vroom crashes the R session. The R session doesn't crash with readr tibbles. I'm running R 3.6.2 on Windows 10, and I've reproduced this same behaviour on RStudio Cloud with R 3.6.0.
# this crashes R
library(ggplot2)
spotify1 <- vroom::vroom("https://github.com/rfordatascience/tidytuesday/blob/master/data/2020/2020-01-21/spotify_songs.csv?raw=true")
ggplot(spotify1, aes(track_popularity)) + geom_bar() + facet_wrap(vars(playlist_genre))
# this is fine
library(ggplot2)
spotify2 <- readr::read_csv("https://github.com/rfordatascience/tidytuesday/blob/master/data/2020/2020-01-21/spotify_songs.csv?raw=true")
ggplot(spotify2, aes(track_popularity)) + geom_bar() + facet_wrap(vars(playlist_genre))