diff options
author | Johannes Ranke <jranke@uni-bremen.de> | 2021-02-27 11:42:24 +0100 |
---|---|---|
committer | Johannes Ranke <jranke@uni-bremen.de> | 2021-02-27 11:42:24 +0100 |
commit | fcffefd17b1e679228257fc504bbdf3179113d74 (patch) | |
tree | 08c344e217fb6e35a07d9d24bc2cd734cf908b78 | |
parent | b7eafd6b952466fe19b198b461f3e98b543dcba9 (diff) |
Current status
-rw-r--r-- | Rprofile | 2 | ||||
-rw-r--r-- | bashrc | 3 | ||||
-rwxr-xr-x | bin/git_diff | 4 | ||||
-rw-r--r-- | gitconfig | 2 | ||||
-rw-r--r-- | vimrc | 8 |
5 files changed, 13 insertions, 6 deletions
@@ -18,7 +18,7 @@ Sys.setenv(R_CHECK_CRAN_INCOMING_REMOTE = "false") Sys.setenv(NOT_CRAN = "true") # For (re)installing PythonInR -#Sys.setenv(USESPECIALPYTHONVERSION="python3") +Sys.setenv(USESPECIALPYTHONVERSION="python3") if (interactive()) { suppressMessages(require(reprex)) @@ -121,4 +121,7 @@ shopt -s checkwinsize # make less more friendly for non-text input files, see lesspipe(1) [ -x /usr/bin/lesspipe ] && eval "$(SHELL=/bin/sh lesspipe)" # }}} +# {{{ PATH again +PATH=~/.local/bin:"${PATH}" +# }}} export EDITOR PATH diff --git a/bin/git_diff b/bin/git_diff index 8b6d242..a35fc68 100755 --- a/bin/git_diff +++ b/bin/git_diff @@ -4,10 +4,10 @@ # From https://stackoverflow.com/a/7669988/3805440, thanks # side-by-side diff with custom options: -#/usr/bin/sdiff -w200 -l "$2" "$5" +/usr/bin/sdiff -w200 -l "$2" "$5" # using kdiff3 as the side-by-side diff: -/usr/bin/kdiff3 "$2" "$5" +#/usr/bin/kdiff3 "$2" "$5" # using Meld #/usr/bin/meld "$2" "$5" @@ -9,7 +9,7 @@ excludesfile = ~/.gitignore autocrlf = input [diff] - external = ~/bin/git_diff +# external = ~/bin/git_diff [merge] tool = vimdiff [url "git@salsa.debian.org:"] @@ -1,5 +1,5 @@ " vimrc of Johannes Ranke -" Last Change: Wed Jan 13, 2021 at 10:16 AM +0100 +" Last Change: Sat Feb 27, 2021 at 11:39 AM +0100 " default settings (much is handled by tpope/sensible) {{{1 set ts=2 set sw=2 @@ -64,8 +64,9 @@ let R_openpdf = 1 let R_min_editor_width = 100 let R_rconsole_width = 80 "let R_rmdchunk = '``' -let R_debug = 0 +"let R_debug = 0 "let RStudio_cmd = '/usr/bin/rstudio' + Plug 'mllg/vim-devtools-plugin' " The following is adapted from issue https://github.com/jalvesaq/Nvim-R/issues/476 @@ -76,6 +77,9 @@ endfunction nmap ,rx :call StartRdevel()<CR> +" julia +Plug 'JuliaEditorSupport/julia-vim' + call plug#end() " R syntax {{{1 |