aboutsummaryrefslogtreecommitdiff
path: root/runtime/vimrc_example.vim
diff options
context:
space:
mode:
authorMichael Reed <m.reed@mykolab.com>2014-12-09 22:48:34 -0500
committerMichael Reed <m.reed@mykolab.com>2014-12-19 15:28:49 -0500
commit6f50fd6c35234313e2423cc0ac45223fcea58ba9 (patch)
treec1f9aef00f6e2032a64408f880ba2256fd722a5b /runtime/vimrc_example.vim
parent189427efd7b905c00f155f5f9ce5123eca599e44 (diff)
downloadrneovim-6f50fd6c35234313e2423cc0ac45223fcea58ba9.tar.gz
rneovim-6f50fd6c35234313e2423cc0ac45223fcea58ba9.tar.bz2
rneovim-6f50fd6c35234313e2423cc0ac45223fcea58ba9.zip
Remove VMS remnants
Diffstat (limited to 'runtime/vimrc_example.vim')
-rw-r--r--runtime/vimrc_example.vim29
1 files changed, 12 insertions, 17 deletions
diff --git a/runtime/vimrc_example.vim b/runtime/vimrc_example.vim
index 3175711aa1..6b234459e2 100644
--- a/runtime/vimrc_example.vim
+++ b/runtime/vimrc_example.vim
@@ -1,13 +1,12 @@
" An example for a vimrc file.
"
-" Maintainer: Bram Moolenaar <Bram@vim.org>
-" Last change: 2014 Feb 05
+" Maintainer: Bram Moolenaar <Bram@vim.org>
+" Last change: 2014 Feb 05
"
" To use it, copy it to
" for Unix: ~/.vimrc
-" for Amiga: s:.vimrc
-" for MS-DOS and Win32: $VIM\_vimrc
-" for OpenVMS: sys$login:.vimrc
+" for Amiga: s:.vimrc
+" for MS-DOS and Win32: $VIM\_vimrc
" When started as "evim", evim.vim will already have done these settings.
if v:progname =~? "evim"
@@ -21,16 +20,12 @@ set nocompatible
" allow backspacing over everything in insert mode
set backspace=indent,eol,start
-if has("vms")
- set nobackup " do not keep a backup file, use versions instead
-else
- set backup " keep a backup file (restore to previous version)
- set undofile " keep an undo file (undo changes after closing)
-endif
-set history=50 " keep 50 lines of command line history
-set ruler " show the cursor position all the time
-set showcmd " display incomplete commands
-set incsearch " do incremental searching
+set backup " keep a backup file (restore to previous version)
+set undofile " keep an undo file (undo changes after closing)
+set history=50 " keep 50 lines of command line history
+set ruler " show the cursor position all the time
+set showcmd " display incomplete commands
+set incsearch " do incremental searching
" For Win32 GUI: remove 't' flag from 'guioptions': no tearoff menu entries
" let &guioptions = substitute(&guioptions, "t", "", "g")
@@ -84,7 +79,7 @@ if has("autocmd")
else
- set autoindent " always set autoindenting on
+ set autoindent " always set autoindenting on
endif " has("autocmd")
@@ -93,5 +88,5 @@ endif " has("autocmd")
" Only define it when not defined already.
if !exists(":DiffOrig")
command DiffOrig vert new | set bt=nofile | r ++edit # | 0d_ | diffthis
- \ | wincmd p | diffthis
+ \ | wincmd p | diffthis
endif