Skip to content

vlt config

Usage:

vlt config <command> [flags]

Work with vlt configuration

Aliases

conf

Subcommands

get

Print the named config value

vlt config get <key> [<key> ...]

list

Print all configuration settings currently in effect

vlt config list

set

Set config values. By default, these are written to the project config file, vlt.json in the root of the project. To set things for all projects, run with --config=user

vlt config set <key>=<value> [<key>=<value> ...] [--config=<user | project>]

del

Delete the named config fields. If no values remain in the config file, delete the file as well. By default, operates on the vlt.json file in the root of the current project. To delete a config field from the user config file, specify --config=user.

vlt config del <key> [<key> ...] [--config=<user | project>]

edit

Edit the configuration file

vlt config edit [--config=<user | project>]

help

Get information about a config field, or show a list of known config field names.

vlt config help [field ...]