-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path.Rprofile
29 lines (22 loc) · 973 Bytes
/
.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
source("renv/activate.R")
if (interactive()) {
suppressMessages(require(colorout))
conflicted::conflict_prefer("filter", "dplyr")
conflicted::conflict_prefer("pluck", "purrr")
# cores do terminal
setOutputColors256(normal = 39, number = 51, negnum = 183, date = 43, string = 79, const = 75, verbose = FALSE)
# função para enviar para o R qual a largura do terminal de saída dos dados
largura <- function() {
options(width = system("tput cols", intern = TRUE))
}
}
options(repos = structure(c(CRAN = "https://cran.rstudio.com/")))
options(
usethis.full_name = "Roney Fraga Souza",
usethis.description = list(
`Authors@R` = 'person("Roney", "Souza", email = "[email protected]", role = c("aut", "cre"),
comment = c(ORCID = "orcid.org/0000-0001-5750-489X"))'
),
usethis.protocol = "ssh"
)
options(browser = "/usr/bin/firefox")