-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.Rprofile
32 lines (23 loc) · 1 KB
/
.Rprofile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
# REMEMBER to restart R after you modify and save this file!
# First, execute the global .Rprofile if it exists. You may configure blogdown
# options there, too, so they apply to any blogdown projects. Feel free to
# ignore this part if it sounds too complicated to you.
# if (file.exists("~/.Rprofile")) {
# base::sys.source("~/.Rprofile", envir = environment())
# }
# Set options to customize the behavior of blogdown for this project. See
# https://bookdown.org/yihui/blogdown/global-options.html
# Automatically serve the site on RStudio startup
options(blogdown.serve_site.startup = TRUE)
# Disable knitting Rmd files on save
options(blogdown.knit.on_save = FALSE)
# Build .Rmd to Markdown
options(blogdown.method = 'markdown')
# Set default extension of new posts to .Rmd
options(blogdown.ext = ".Rmd")
# Set default author for new posts
options(blogdown.author = "arisp99")
# Set default locations for new posts
options(blogdown.subdir = "blog")
# Set Hugo version
options(blogdown.hugo.version = "0.92.2")