1 /* vi:set ts=8 sts=4 sw=4:
3 * VIM - Vi IMproved by Bram Moolenaar
5 * Do ":help uganda" in Vim to read copying and usage conditions.
6 * Do ":help credits" in Vim to see a list of people who contributed.
10 * Common MS-DOS and Win32 (Windows NT and Windows 95) defines.
12 * Names for the EXRC, HELP and temporary files.
13 * Some of these may have been defined in the makefile or feature.h.
16 #ifndef SYS_VIMRC_FILE
17 # define SYS_VIMRC_FILE "$VIM\\vimrc"
19 #ifndef USR_VIMRC_FILE
20 # define USR_VIMRC_FILE "$HOME\\_vimrc"
22 #ifndef USR_VIMRC_FILE2
23 # define USR_VIMRC_FILE2 "$VIM\\_vimrc"
26 # define EVIM_FILE "$VIMRUNTIME\\evim.vim"
30 # define USR_EXRC_FILE "$HOME\\_exrc"
32 #ifndef USR_EXRC_FILE2
33 # define USR_EXRC_FILE2 "$VIM\\_exrc"
37 # ifndef SYS_GVIMRC_FILE
38 # define SYS_GVIMRC_FILE "$VIM\\gvimrc"
40 # ifndef USR_GVIMRC_FILE
41 # define USR_GVIMRC_FILE "$HOME\\_gvimrc"
43 # ifndef USR_GVIMRC_FILE2
44 # define USR_GVIMRC_FILE2 "$VIM\\_gvimrc"
46 # ifndef SYS_MENU_FILE
47 # define SYS_MENU_FILE "$VIMRUNTIME\\menu.vim"
51 #ifndef SYS_OPTWIN_FILE
52 # define SYS_OPTWIN_FILE "$VIMRUNTIME\\optwin.vim"
57 # define VIMINFO_FILE "$HOME\\_viminfo"
59 # ifndef VIMINFO_FILE2
60 # define VIMINFO_FILE2 "$VIM\\_viminfo"
65 # define VIMRC_FILE "_vimrc"
69 # define EXRC_FILE "_exrc"
74 # define GVIMRC_FILE "_gvimrc"
79 # define DFLT_HELPFILE "$VIMRUNTIME\\doc\\help.txt"
83 # define FILETYPE_FILE "filetype.vim"
86 # define FTPLUGIN_FILE "ftplugin.vim"
89 # define INDENT_FILE "indent.vim"
92 # define FTOFF_FILE "ftoff.vim"
95 # define FTPLUGOF_FILE "ftplugof.vim"
98 # define INDOFF_FILE "indoff.vim"
102 # define SYNTAX_FNAME "$VIMRUNTIME\\syntax\\%s.vim"
106 # define DFLT_BDIR ".,c:\\tmp,c:\\temp" /* default for 'backupdir' */
110 # define DFLT_VDIR "$VIM/vimfiles/view" /* default for 'viewdir' */
114 # define DFLT_DIR ".,c:\\tmp,c:\\temp" /* default for 'directory' */
117 #define DFLT_ERRORFILE "errors.err"
118 #define DFLT_RUNTIMEPATH "$HOME/vimfiles,$VIM/vimfiles,$VIMRUNTIME,$VIM/vimfiles/after,$HOME/vimfiles/after"
120 #define CASE_INSENSITIVE_FILENAME /* ignore case when comparing file names */
121 #define SPACE_IN_FILENAME
122 #define BACKSLASH_IN_FILENAME
123 #define USE_CRNL /* lines end in CR-NL instead of NL */
124 #define HAVE_DUP /* have dup() */
125 #define HAVE_ST_MODE /* have stat.st_mode */