Blob


1 " $Id: .nexrc,v 1.2 2019/02/09 18:23:56 cvs Exp $
3 " Autoindent on
4 set ai
5 " Display the current editor mode and a modified flag.
6 set showmode
7 " Note mathing braces
8 set showmatch
9 " Show ruler
10 set ruler
11 " Set the autoindent and shift command indentation width.
12 set shiftwidth=4
13 set tabstop=4
14 " Secure mode
15 set secure
16 " Display error messages
17 set verbose
18 " Left right scrolling
19 set leftright
20 " Use extended REs
21 set extended
22 " Make RE case insensitive
23 set iclower
24 " Flash instead of bell
25 set flash
26 " Make search incremental
27 set searchincr
28 " Show line numbers
29 set nu
30 " 78-N chars wrapmargin
31 set wm=2
33 set report=1