minetest.conf

From Minetest Wiki
Revision as of 17:43, 6 December 2022 by ROllerozxa (talk | contribs) (remove outdated list of settings, redundant with .conf.example)
Jump to navigation Jump to search
Languages Language: English • Deutsch • français • 日本語

Note: Since version 0.4.14, Minetest has an “advanced settings” feature to change virtually all settings in Minetest, including a brief description of what each setting does. You will now rarely need to edit minetest.conf manually.

minetest.conf is the configuration file used for numerous purposes. This file is read every time the game starts and is always created/modified when the menu quits.

The configuration file is located in one of these locations:

  • ../minetest.conf - (RUN_IN_PLACE version, relative to executable)
  • ../../minetest.conf - (RUN_IN_PLACE version, relative to executable)
  • ~/.minetest/minetest.conf - (globally installed version on Linux)

A custom path to a configuration file can be specified in command line using the option --config /path/to/minetest.conf.

A file called minetest.conf.example is provided as an example. See that file for a more complete list of options.

Controls

In minetest.conf, you can configure most (but not all) keys, but a few more keys can be configured which are not configurable in the in-game settings menu; most notably, camera mode and minimap.

A few things to note:

  • Controls are written in the format keymap_<action name> = <key name>, e.g. keymap_forward = KEY_KEY_W
  • The list of possible controls (value right of the equals sign) can be seen in [1]. If your key isn't listed there, try writing the literal character
  • To disable a control completely, leave the part right of the equals sign empty, e.g. keymap_toggle_debug =

See Controls for a list of controls and their setting name (if available).