diff --git a/.Rbuildignore b/.Rbuildignore
index 48e9c88..4c39bbd 100644
--- a/.Rbuildignore
+++ b/.Rbuildignore
@@ -1,5 +1,8 @@
-^rscodeio\.Rproj$
+# dot-files
+^\..*$
+
+# rstudio
+^.*\.Rproj$
^\.Rproj\.user$
-\.editorconfig
-\.vscode
+
^LICENSE\.md$
diff --git a/DESCRIPTION b/DESCRIPTION
index b17ea77..d7dce5b 100644
--- a/DESCRIPTION
+++ b/DESCRIPTION
@@ -1,6 +1,6 @@
Package: rscodeio
-Title: A VSCode skin for RStudio.
-Version: 0.0.1
+Title: A VSCode skin for RStudio
+Version: 0.1.0
Authors@R: c(person("Anthony", "North", email = "anthony.jl.north@gmail.com", role = c("aut", "cre")),
person("Miles", "McBain", email = "miles.mcbain@gmail.com", role = "ctb"))
Description: It really just modifies RStudio presentation.
@@ -11,4 +11,4 @@ LazyData: true
Imports:
fs,
rstudioapi
-RoxygenNote: 6.1.1
+RoxygenNote: 7.1.0
diff --git a/README.md b/README.md
index 4631928..36a7e9a 100644
--- a/README.md
+++ b/README.md
@@ -2,6 +2,18 @@
+
+
+
+
+
+
+
+
+
+
+
+
# rscodeio
An RStudio theme inspired by Visual Studio Code.
@@ -20,12 +32,12 @@ remotes::install_github("anthonynorth/rscodeio")
`rscodeio` modifies the theme of RStudio menus. These are not exposed by the current theming API and so this is achieved by modifying style sheets in the RStudio installation. To modify files in this area will likely require the installation to be run with administrator privileges. To do this:
-* On Windows start RStudio by right clicking on a shortcut or menu icon and selecting 'Run as Administrator'
-* On Linux start RStudio in a terminal using `sudo rstudio --no-sandbox`
-* On Mac this is not required. Theming the menus is not supported.
+- On Windows start RStudio by right clicking on a shortcut or menu icon and selecting 'Run as Administrator'
+- On Linux start RStudio in a terminal using `sudo rstudio --no-sandbox`
+- On Mac this is not required. Theming the menus is not supported.
- They're inherited from OS so might want to use your dark OS theme.
-From within RStudio running as administrator, run this command to install and apply the theme:
+From within RStudio running as administrator, run this command to install and apply the theme:
```
rscodeio::install_theme()
@@ -37,7 +49,7 @@ Once installed it can also be selected using the RStudio theme picker in the usu
# For best results
-- Enable: Tools -> Global Options -> Code -> Display -> Highlight R Function Calls
+- Enable: Tools -> Global Options -> Code -> Display -> Highlight R Function Calls
- Enable: Tools -> Global Options -> Code -> Display -> Show Syntax Highlighting in Console
- Enable: Tools -> Global Options -> Code -> Display -> Show Indent Guides
- Enable: Tools -> Global Options -> Code -> Display -> Highlight Selected Line
@@ -48,5 +60,4 @@ Once installed it can also be selected using the RStudio theme picker in the usu
# Supported Platforms
-`rscodeio` has only been tested on Windows and Pop!_OS Linux so far. Feedback from other platforms welcome.
-
+`rscodeio` has only been tested on Windows and Pop!\_OS Linux so far. Feedback from other platforms welcome.
diff --git a/man/install_theme.Rd b/man/install_theme.Rd
index e5337fb..8ff05c7 100644
--- a/man/install_theme.Rd
+++ b/man/install_theme.Rd
@@ -4,13 +4,20 @@
\alias{install_theme}
\title{Install the rscodeio theme}
\usage{
-install_theme()
+install_theme(menus = TRUE)
+}
+\arguments{
+\item{menus}{if FALSE do not install the RStudio menu theme qss files.}
}
\value{
nothing.
}
\description{
-You'll need RStudio at least 1.2.x and if you're on Windows, and your RStudio
-is installed to program files, you'll need to be running RStudio as
-Administrator (Just required for install).
+You'll need RStudio at least 1.2.x and if your RStudio
+is installed to a default location on Windows or Linux,
+you'll need to be running RStudio as
+Administrator to install the menu theme files (Just required for install).
+}
+\details{
+You can elect not to install the menu theme files with `menus = FALSE`.
}