" " ~/.exrc " Write here all ex-commands, that vi or any vi-clone can use. " Put nvi-specific ex-commands to ~/.nexrc " Put Vim-specific commands to ~/.vimrc " " Tested with: " vi (maintained by Gunnar Ritter) " vi (in Sun Solaris 8) " Vim " nvi " " Note!: Don't put blank lines here! Plain vi of proprietary SysV Unixes " (for example vi of Solaris) won't like it! Commented lines are allowed, " though. Also that vi maintained by Gunnar Ritter has problems with " empty lines. " " If exrc is set, ex will access any .exrc file in the current directory, " as described previously. If exrc is not set, ex will ignore any .exrc " file in the current directory during initialisation, unless the current " directory is that named by the HOME variable. set noexrc " Do case insensitive matching set ignorecase " turn auto indenting off set noautoindent " Don't write modified files automatically when changing files set noautowrite " Set the spacing between hardware tab settings set hardtabs=8 " Display lines in an unambiguous fashion: set list " If magic is set, change the interpretation of characters in regular " expressions and substitution replacement strings set magic " Do not permit messages from other users. set nomesg " If number is set, lines will be written with line numbers, as with the " number command. set nonumber " If prompt is set, command mode input will be prompted for with a colon " (:); when unset, no prompt will be written. set prompt " The editor simulates an intelligent terminal on a dumb terminal. " (Since this is likely to require a large amount of output to the " terminal, it is useful only at high transmission speeds.) set redraw " Set the number of lines about which the editor reports changes " or yanks. set report=5 " Set the autoindent and shift command indentation width. set shiftwidth=8 " show matching delimiter for parentheses, braces, etc set showmatch " Show mode (Insert, Replace, Visual) set showmode " In visual mode, this 'slowopen' prevents screen updates during input to " improve throughput on unintelligent terminals. set noslowopen " This option sets tab widths for the editor display. set tabstop=8 " If terse is set, error messages may be less verbose. However, except for " this caveat, error messages are unspecified. set noterse " If warn is set, ex will write a warning message to standard error if the " contents of the buffer have not been saved before a "!" command escape. set warn " Set searches to wrap around the end or beginning of the file. set wrapscan " If writeany is set, file-overwriting checks will be inhibited that would " otherwise be made before write and xit commands, or before an automatic " write (see editor option autowrite), allowing a write to any file (provided " permissions allow it). set nowriteany """"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" " Abbreviations: ab MFUT Mail-Followup-To: Juhapekka Tolvanen ab AHREF ab ahref ab accross across ab hte the ab teh the ab Teh The ab usefull useful ab useles useless " " " vim: set ft=vim : " THE END