Tweak stringr options

This commit is contained in:
Hadley Wickham 2022-10-04 17:34:34 -05:00
parent d7af73d196
commit 3ebfbf0bd7
1 changed files with 5 additions and 2 deletions

View File

@ -10,13 +10,16 @@ knitr::opts_chunk$set(
fig.show = "hold"
)
options(dplyr.print_min = 6, dplyr.print_max = 6)
options(
dplyr.print_min = 6,
dplyr.print_max = 6,
stringr.view_n = 10
)
# Activate crayon output
options(
#crayon.enabled = TRUE,
pillar.bold = TRUE,
stringr.html = FALSE
)
ggplot2::theme_set(ggplot2::theme_gray(12))