Is there a way to set global arguments instead of options? E.g I'd like bootstrap_options = c("striped", "condensed") every time I use kable_styling() .
Not in the way you suggest. But you could overwrite the kable_styling() function, e.g.
# Change arguments to what you want
kable_styling = kableExtra::kable_styling(kable_input, bootstrap_options = "basic",
latex_options = "basic", full_width = NULL, position = "center",
font_size = NULL, row_label_position = "l", ...)
Then whenever you call kable_styling() you are calling your version that is a thin wrapper around the original.
If you end up creating a few of these functions, consider putting them in a package.