From 3b09635f461cb48c12513c36736bdf8300fbe648 Mon Sep 17 00:00:00 2001 From: Yuya Nishihara Date: Tue, 24 Jan 2023 11:47:19 +0900 Subject: [PATCH] cli: rename config/git.toml to misc.toml to add some more random stuff I could add a file per section, but each file would just contain one or two lines. --- src/config.rs | 2 +- src/config/{git.toml => misc.toml} | 0 2 files changed, 1 insertion(+), 1 deletion(-) rename src/config/{git.toml => misc.toml} (100%) diff --git a/src/config.rs b/src/config.rs index a041a24e4..5c5364e42 100644 --- a/src/config.rs +++ b/src/config.rs @@ -159,7 +159,7 @@ pub fn default_config() -> config::Config { config::Config::builder() .add_source(from_toml!("config/colors.toml")) .add_source(from_toml!("config/merge_tools.toml")) - .add_source(from_toml!("config/git.toml")) + .add_source(from_toml!("config/misc.toml")) .build() .unwrap() } diff --git a/src/config/git.toml b/src/config/misc.toml similarity index 100% rename from src/config/git.toml rename to src/config/misc.toml