summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--bashrc7
-rw-r--r--vimrc14
2 files changed, 15 insertions, 6 deletions
diff --git a/bashrc b/bashrc
index 2285c44..4d6e54a 100644
--- a/bashrc
+++ b/bashrc
@@ -22,6 +22,9 @@ PATH=/usr/lib/R/site-library/littler/examples:"${PATH}"
# Path where the R sources are
export RTOP=~/svn/R
# }}}
+# Julia {{{
+alias julia='/home/jranke/git/julia/julia'
+# }}}
# debian {{{
export DEBEMAIL=jranke@uni-bremen.de
export DEBFULLNAME="Johannes Ranke"
@@ -98,3 +101,7 @@ export VIRTUALENVWRAPPER_PYTHON=/usr/bin/python3
export VIRTUALENVWRAPPER_VIRTUALENV_ARGS=' -p /usr/bin/python3 '
source /usr/local/bin/virtualenvwrapper.sh
# }}}
+# {{{ reticulate
+export RETICULATE_PYTHON=/usr/bin/python3
+export RETICULATE_AUTOCONFIGURE=FALSE
+# }}}
diff --git a/vimrc b/vimrc
index 662b299..82c619a 100644
--- a/vimrc
+++ b/vimrc
@@ -1,5 +1,5 @@
" vimrc of Johannes Ranke
-" Last Change: Fri May 12, 2023 at 09:53 PM +0200
+" Last Change: Fri Dec 06, 2024 at 01:12 PM +0100
" default settings (much is handled by tpope/sensible) {{{1
set ts=2
set sw=2
@@ -28,13 +28,13 @@ Plug 'tpope/vim-sensible'
Plug 'tpope/vim-scriptease' " gives me K for looking up docs in vim scripts
Plug 'hrp/EnhancedCommentify'
Plug 'vim-scripts/DeleteTrailingWhitespace'
-Plug 'jranke/lastchange.vim', { 'branch': 'jranke' }
+"Plug 'jranke/lastchange.vim', { 'branch': 'jranke' }
" Appearance
Plug 'vim-airline/vim-airline'
Plug 'vim-airline/vim-airline-themes'
-"Plug 'jalvesaq/R-Vim-runtime'
+Plug 'jalvesaq/R-Vim-runtime'
Plug '~/git/R-Vim-runtime'
Plug 'vim-pandoc/vim-pandoc'
Plug 'vim-pandoc/vim-pandoc-syntax'
@@ -45,7 +45,7 @@ Plug 'seb-mueller/kwbdi.vim'
" Version control
Plug 'tpope/vim-fugitive'
-Plug 'airblade/vim-gitgutter'
+Plug 'airblade/vim-gitgutter', { 'branch': 'main' }
Plug 'samoshkin/vim-mergetool'
let g:mergetool_layout = 'mr'
let g:mergetool_prefer_revision = 'local'
@@ -60,13 +60,15 @@ Plug 'ConradIrwin/vim-bracketed-paste'
" Show and manage marks
Plug 'kshenoy/vim-signature'
+" Wayland clipboard
+Plug 'jasonccox/vim-wayland-clipboard'
+
" vimcmdline plugin {{{1
Plug 'jalvesaq/vimcmdline'
let cmdline_map_start = '<LocalLeader>s'
" R plugin {{{1
-"Plug 'jalvesaq/Nvim-R'
-Plug 'jalvesaq/Nvim-R', {'branch': 'stable'}
+Plug 'jalvesaq/Nvim-R'
vmap r <Esc>:call SendSelectionToR("echo", "down")<CR>
let R_assign = 0
let R_pdfviewer = 'okular'

Contact - Imprint