diff options
-rw-r--r-- | Renviron | 3 | ||||
-rw-r--r-- | Rprofile | 5 | ||||
-rw-r--r-- | gitconfig | 18 | ||||
-rwxr-xr-x | install | 2 |
4 files changed, 15 insertions, 13 deletions
diff --git a/Renviron b/Renviron deleted file mode 100644 index 92b13cf..0000000 --- a/Renviron +++ /dev/null @@ -1,3 +0,0 @@ -R_CHECK_CRAN_INCOMING_REMOTE=false -NOT_CRAN=true -LANGUAGE=en @@ -12,6 +12,11 @@ local({ options(repos = r) }) +# littler does not read .Renviron, therefore do this here +Sys.setenv(LANGUAGE = "en") +Sys.setenv(R_CHECK_CRAN_INCOMING_REMOTE = FALSE) +Sys.setenv(NOT_CRAN = TRUE) + # For (re)installing PythonInR #Sys.setenv(USESPECIALPYTHONVERSION="python3") @@ -1,16 +1,16 @@ # vim: ft=gitconfig [user] - name = Johannes Ranke - email = jranke@uni-bremen.de + name = Johannes Ranke + email = jranke@uni-bremen.de signingkey = E19F 5F87 1288 99B1 92B1 A2C2 AD5F 960A 256A 04AF [push] - default = simple + default = simple [core] - excludesfile = ~/.gitignore - autocrlf = input - pager = less -S + excludesfile = ~/.gitignore + autocrlf = input + pager = /usr/share/doc/git/contrib/diff-highlight/diff-highlight | less --tabs=4 -RFX [merge] - tool = vimdiff + tool = vimdiff [url "git@salsa.debian.org:"] - pushInsteadOf = https://salsa.debian.org/ - insteadOf = salsa: + pushInsteadOf = https://salsa.debian.org/ + insteadOf = salsa: @@ -6,7 +6,7 @@ cd $(dirname $BASH_SOURCE) BASE=$(pwd) # dotfiles to install -for dotfile in bashrc vimrc gitconfig gitignore Rprofile Renviron tmux.conf reportbugrc; do +for dotfile in bashrc vimrc gitconfig gitignore Rprofile tmux.conf reportbugrc; do mkdir -pv bak [ -e ~/.$dotfile ] && mv -v ~/.$dotfile bak/.$dotfile ln -sfv $BASE/$dotfile ~/.$dotfile |