Pull the Microsoft terminal configuration (fix #267)

This commit is contained in:
Roey Darwish Dror
2019-11-27 22:23:44 +02:00
parent e0c294bd9e
commit 738c7c84c1
2 changed files with 8 additions and 0 deletions

View File

@@ -93,6 +93,7 @@ Just run `topgrade`. It will run the following steps:
* ~/.config/bspwm
* ~/.config/i3
* Powershell Profile
* [Microsoft Terminal](https://github.com/microsoft/terminal) configuration
* Custom defined paths
* **Unix**: Run [zr](https://github.com/jedahan/zr) update
* **Unix**: Run [zplug](https://github.com/zplug/zplug) update

View File

@@ -259,6 +259,13 @@ fn run() -> Result<(), Error> {
git_repos.insert(base_dirs.config_dir().join("i3"));
}
#[cfg(windows)]
git_repos.insert(
base_dirs
.data_local_dir()
.join("Packages/Microsoft.WindowsTerminal_8wekyb3d8bbwe/LocalState"),
);
if let Some(profile) = powershell.profile() {
git_repos.insert(profile);
}