diff options
author | Johannes Ranke <jranke@uni-bremen.de> | 2020-10-13 15:23:44 +0200 |
---|---|---|
committer | Johannes Ranke <jranke@uni-bremen.de> | 2020-10-13 15:23:44 +0200 |
commit | 4749fbf0c7269102b7cb1da657781b55ec446833 (patch) | |
tree | f99d715b631317a056e2796164f3cea0203b03c0 | |
parent | 89b2bd0d774ab8455b7c39c35e1eab384fe64fa6 (diff) |
Still using python 2.7 for rdkit with chents...
Various small changes that have accumulated
-rw-r--r-- | Rprofile | 2 | ||||
-rw-r--r-- | bashrc | 3 | ||||
-rw-r--r-- | vimrc | 7 |
3 files changed, 5 insertions, 7 deletions
@@ -13,7 +13,7 @@ local({ }) # For (re)installing PythonInR -#Sys.setenv(USESPECIALPYTHONVERSION="python3.5") +#Sys.setenv(USESPECIALPYTHONVERSION="python3") if (interactive()) { suppressMessages(require(reprex)) @@ -113,9 +113,6 @@ if [ -f /etc/bash_completion ] && ! shopt -oq posix; then . /etc/bash_completion fi # }}} -# {{{ PythonInR -export USESPECIALPYTHONVERSION="python3" -# }}} # {{{varia # check the window size after each command and, if necessary, # update the values of LINES and COLUMNS. @@ -1,5 +1,5 @@ " vimrc of Johannes Ranke -" Last Change: Thu May 28, 2020 at 04:16 PM +0200 +" Last Change: Thu Jul 09, 2020 at 12:13 PM +0200 " default settings (much is handled by tpope/sensible) {{{1 set ts=2 set sw=2 @@ -11,6 +11,7 @@ set splitbelow set splitright set mouse=a set guicursor= +set hid "que to slow buffer switching, see https://github.com/neovim/neovim/issues/4524 " to ease the use of plugin mappings let maplocalleader = "," @@ -36,9 +37,9 @@ Plug '~/git/R-Vim-runtime' Plug 'vim-pandoc/vim-pandoc' Plug 'vim-pandoc/vim-pandoc-syntax' " The following plugin gives me <Leader>bd for closing a buffer while keeping -" the window open, for example when editing several R scripts with +" the window open, for example when editing several R scripts with " the R interpreter running in a separate vim window -Plug 'seb-mueller/kwbdi.vim' +Plug 'seb-mueller/kwbdi.vim' " Version control Plug 'tpope/vim-fugitive' |