docs(changelog): Invert Asset Installation

This commit is contained in:
a-kenji 2021-05-15 13:17:35 +02:00
parent e0fede55a8
commit fef150c8ff
2 changed files with 2 additions and 1 deletions

View file

@ -6,6 +6,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/)
## [Unreleased]
* Add `check` flag to `setup` subcommand, move `generate-completions` subcommand to `setup` flag (https://github.com/zellij-org/zellij/pull/503)
* Change the asset installation from an opt-in to an opt-out (https://github.com/zellij-org/zellij/pull/512)
## [0.10.0] - 2021-05-14
* Change Switch default config loading order of `HOME` and system (https://github.com/zellij-org/zellij/pull/488)

View file

@ -187,7 +187,7 @@ fn init_session(
// Determine and initialize the data directory
let data_dir = opts.data_dir.unwrap_or_else(get_default_data_dir);
#[cfg(not(disable_automatic_assets_installation))]
#[cfg(not(disable_automatic_asset_installation))]
populate_data_dir(&data_dir);
// Don't use default layouts in tests, but do everywhere else