diff options
author | Andreas Rumpf <rumpf_a@web.de> | 2018-08-16 18:43:25 +0200 |
---|---|---|
committer | Andreas Rumpf <rumpf_a@web.de> | 2018-08-16 18:49:22 +0200 |
commit | 3ca8ebe778cb82cdbd97d7a9a00015bbeed1a696 (patch) | |
tree | a4960dada70288e80fa7d49c118bf4abdbdc73d1 /doc/nimc.rst | |
parent | 2da0341b4d6828479c5dc75a233b47732f53cf6c (diff) | |
download | Nim-3ca8ebe778cb82cdbd97d7a9a00015bbeed1a696.tar.gz |
fixes #8653
Diffstat (limited to 'doc/nimc.rst')
-rw-r--r-- | doc/nimc.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/nimc.rst b/doc/nimc.rst index 31df4b6f7..0682fac03 100644 --- a/doc/nimc.rst +++ b/doc/nimc.rst @@ -154,7 +154,7 @@ passed as a command line argument to the compiler. The ``nim`` executable processes configuration files in the following directories (in this order; later files overwrite previous settings): -1) ``$nim/config/nim.cfg``, ``/etc/nim.cfg`` (UNIX) or ``%NIMROD%/config/nim.cfg`` (Windows). This file can be skipped with the ``--skipCfg`` command line option. +1) ``$nim/config/nim.cfg``, ``/etc/nim/nim.cfg`` (UNIX) or ``%NIM%/config/nim.cfg`` (Windows). This file can be skipped with the ``--skipCfg`` command line option. 2) ``$HOME/.config/nim.cfg`` (POSIX) or ``%APPDATA%/nim.cfg`` (Windows). This file can be skipped with the ``--skipUserCfg`` command line option. 3) ``$parentDir/nim.cfg`` where ``$parentDir`` stands for any parent directory of the project file's path. These files can be skipped with the ``--skipParentCfg`` command line option. 4) ``$projectDir/nim.cfg`` where ``$projectDir`` stands for the project file's path. This file can be skipped with the ``--skipProjCfg`` command line option. |