summaryrefslogtreecommitdiff
path: root/vimrc
diff options
context:
space:
mode:
authorJohannes Ranke <jranke@uni-bremen.de>2016-10-26 16:02:12 +0200
committerJohannes Ranke <jranke@uni-bremen.de>2016-10-26 16:02:12 +0200
commit275835552d26a4ebd750bd575230b5ea95557af3 (patch)
treed3bb266e9d3bc83e72e8d102e4b5389c1779871f /vimrc
parent758d594991d36da0f537ae7fb1001c86582e206f (diff)
Make target for old vimcom, set modeline, formatting
Diffstat (limited to 'vimrc')
-rw-r--r--vimrc34
1 files changed, 17 insertions, 17 deletions
diff --git a/vimrc b/vimrc
index f3ad315..bb10796 100644
--- a/vimrc
+++ b/vimrc
@@ -1,9 +1,9 @@
-" vim: foldmethod=marker foldlevel=0 ts=2 sw=2
-
+" vim: foldmethod=marker foldlevel=0 ts=2 sw=2 expandtab
" default settings (much is handled by tpope/sensible) {{{1
set ts=2
set sw=2
set expandtab
+set modeline
filetype plugin on
filetype indent on
@@ -23,33 +23,33 @@ Plug 'jranke/vim-pandoc', { 'branch': 'rmd' }
Plug 'vim-pandoc/vim-pandoc-syntax'
if !has('nvim')
- Plug 'jranke/Vim-R-plugin' " for my vim version 7.4, legacy plugin not maintained by Jakson any more
+ Plug 'jranke/Vim-R-plugin' " for my vim version 7.4, legacy plugin not maintained by Jakson any more
else
- Plug 'jalvesaq/Nvim-R'
+ Plug 'jalvesaq/Nvim-R'
endif
call plug#end()
" legacy Vim-R-plugin plugin {{{1
if !has('nvim')
- "let vimrplugin_vsplit = 0
- "let vimrplugin_rconsole_width = 100
+ "let vimrplugin_vsplit = 0
+ "let vimrplugin_rconsole_width = 100
- "let vimrplugin_pdfviewer = "/usr/bin/okular"
- "let vimrplugin_openpdf = 0
- let vimrplugin_assign = 0
- "let vimrplugin_objbr_place = "script,left"
- let r_syntax_folding = 1
- let rmd_syn_hl_chunk = 1
+ "let vimrplugin_pdfviewer = "/usr/bin/okular"
+ "let vimrplugin_openpdf = 0
+ let vimrplugin_assign = 0
+ "let vimrplugin_objbr_place = "script,left"
+ let r_syntax_folding = 1
+ let rmd_syn_hl_chunk = 1
let vimrplugin_map_r = 1 " is silent per default, therefore tried
- "vnoremap r *@<Esc>:call SendSelectionToR("echo", "down")<CR>
+ "vnoremap r *@<Esc>:call SendSelectionToR("echo", "down")<CR>
" but this does not work as expected
else
- vmap r <Esc>:call SendSelectionToR("echo", "down")<CR>
- "let R_source_args = "print.eval = TRUE"
- let R_vsplit = 1
- let R_assign = 0
+ vmap r <Esc>:call SendSelectionToR("echo", "down")<CR>
+ "let R_source_args = "print.eval = TRUE"
+ let R_vsplit = 1
+ let R_assign = 0
endif
" R syntax {{{1

Contact - Imprint