summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohannes Ranke <jranke@uni-bremen.de>2022-07-01 11:47:31 +0200
committerJohannes Ranke <jranke@uni-bremen.de>2022-07-01 11:47:31 +0200
commit3c07fde676dd40a11d2233d80f2cdedb4ae02c97 (patch)
tree04965ae69222b6338688d2d5a71055da56819f28
parent55f187795fb3e8ad9d99790e52bdc8a4f5d99edf (diff)
Switch between multiple R versions, pending updates
-rw-r--r--Rprofile11
-rw-r--r--vimrc29
2 files changed, 23 insertions, 17 deletions
diff --git a/Rprofile b/Rprofile
index 81866b0..ec46837 100644
--- a/Rprofile
+++ b/Rprofile
@@ -17,10 +17,7 @@ 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")
-
-if (interactive()) {
- suppressMessages(require(reprex))
- suppressMessages(require(usethis))
-}
+#if (interactive()) {
+# suppressMessages(require(reprex))
+# suppressMessages(require(usethis))
+#}
diff --git a/vimrc b/vimrc
index 5ec86a0..d078273 100644
--- a/vimrc
+++ b/vimrc
@@ -1,5 +1,5 @@
" vimrc of Johannes Ranke
-" Last Change: Mon Sep 20, 2021 at 04:36 PM +0200
+" Last Change: Fri Jul 01, 2022 at 11:47 AM +0200
" default settings (much is handled by tpope/sensible) {{{1
set ts=2
set sw=2
@@ -17,6 +17,9 @@ set hid "que to slow buffer switching, see https://github.com/neovim/neovim/issu
let maplocalleader = ","
let mapleader = ";"
+" lilypond runtime (https://wiki.debian.org/LilyPond)
+set runtimepath+=/usr/share/lilypond/2.22.0/vim/
+
" Plugins managed by vim-plug {{{1
call plug#begin('~/.vim/plugged')
@@ -50,6 +53,7 @@ let g:mergetool_prefer_revision = 'local'
" File system exploration
Plug 'scrooloose/nerdtree'
+Plug 'junegunn/fzf'
" Bracketed paste
Plug 'ConradIrwin/vim-bracketed-paste'
@@ -57,9 +61,13 @@ Plug 'ConradIrwin/vim-bracketed-paste'
" Show and manage marks
Plug 'kshenoy/vim-signature'
+" vimcmdline plugin {{{1
+Plug 'jalvesaq/vimcmdline'
+let cmdline_map_start = '<LocalLeader>s'
+
" R plugin {{{1
-Plug 'jalvesaq/Nvim-R'
-"Plug '~/git/Nvim-R', { 'branch': 'rstudio' }
+"Plug 'jalvesaq/Nvim-R'
+Plug 'jalvesaq/Nvim-R', {'branch': 'stable'}
vmap r <Esc>:call SendSelectionToR("echo", "down")<CR>
let R_assign = 0
let R_pdfviewer = 'okular'
@@ -74,13 +82,14 @@ let R_nvim_wd = 1 " set working dir to vims working dir
Plug 'mllg/vim-devtools-plugin'
-" The following is adapted from issue https://github.com/jalvesaq/Nvim-R/issues/476
-function StartRdevel()
- let g:R_path = '~/svn/R/r-devel/build/bin'
- call StartR("R-devel")
+" The following is taken from issue https://github.com/jalvesaq/Nvim-R/issues/476
+function StartRFromPath(path)
+ let g:R_path = a:path
+ call StartR("R")
endfunction
-nmap ,rx :call StartRdevel()<CR>
+nmap ,rx :call StartRFromPath('/home/jranke/svn/R/r-devel/build/bin')<CR>
+nmap ,ry :call StartRFromPath('/home/jranke/svn/R/r-4-1/build/bin')<CR>
" julia
Plug 'JuliaEditorSupport/julia-vim'
@@ -110,9 +119,9 @@ noremap \bb i\begin{block}{}<CR><CR>\end{block}<CR><ESC>3k14li
noremap \bc i\begin{center}<CR><CR>\end{center}<CR><ESC>2ki
noremap \bf i\begin{frame}{}<Space>%{{{3<CR><CR>\end{frame}<CR><ESC>3k14li
noremap \bi i\begin{itemize}[<+->]<CR>\item <CR>\end{itemize}<ESC>k8li
-noremap \bo i\begin{columns}<CR>\begin{column}{}<CR>\end{column}<CR>\end{columns}<CR><ESC>3k17li
+noremap \bo i\begin{columns}<CR>\begin{column}{.5\textwidth}<CR>\end{column}<CR>\begin{column}{.5\textwidth}<CR>\end{column}<CR>\end{columns}<CR><ESC>6ki
noremap \bs i\source{}<ESC>li
-noremap \bt i\begin{table}\begin{tabular}{}<CR><CR>\end{tabular}\end{table}<CR><ESC>3ki
+noremap \bt i\begin{tabular}{}<CR><CR>\end{tabular}<CR><ESC>3k$i
noremap \eq i\question[2]<CR>\begin{solution}[2cm]<CR>\end{solution}<CR><ESC>3kA
" EnhancedCommentify {{{1

Contact - Imprint