vimrc (571B)
1 set showcmd " show (partial) command in status line 2 set showmatch " show matching brackets 3 set incsearch " incremental search 4 set autowrite " automatically save before commands like :next and :make 5 set nocompatible " use vim defaults instead of 100% vi compatibility 6 set backspace=indent,eol,start " more powerful backspacing 7 set autoindent " always set autoindenting on 8 set linebreak " don't wrap words by default 9 set textwidth=0 " don't wrap lines by default 10 set ruler " show the cursor position all the time 11 12 set backupskip+=/etc/crontabs.* " fix crontab -e