From 03f035cc8320d94dbc9cf6f84d3758d5d854e982 Mon Sep 17 00:00:00 2001 From: Roey Darwish Dror Date: Mon, 11 Jun 2018 11:38:25 +0300 Subject: [PATCH] Detect fish configuration --- README.md | 1 + src/main.rs | 1 + 2 files changed, 2 insertions(+) diff --git a/README.md b/README.md index 81b76baf..c0a130f7 100644 --- a/README.md +++ b/README.md @@ -25,6 +25,7 @@ Just invoke `topgrade`. It will invoke the following steps: * ~/.zshrc * [~/.oh-my-zsh](https://github.com/robbyrussell/oh-my-zsh) * ~/.tmux + * ~/.config/fish/config.fish * *Unix*: Invoke [zplug](https://github.com/zplug/zplug) update * *Unix*: Upgrade tmux plugins with [TPM](https://github.com/tmux-plugins/tpm) * Invoke Cargo [install-update](https://github.com/nabijaczleweli/cargo-update) diff --git a/src/main.rs b/src/main.rs index 465d2373..7bda64bc 100644 --- a/src/main.rs +++ b/src/main.rs @@ -127,6 +127,7 @@ fn run() -> Result<(), Error> { git_repos.insert(home_path(".zshrc")); git_repos.insert(home_path(".oh-my-zsh")); git_repos.insert(home_path(".tmux")); + git_repos.insert(home_path(".config/fish/config.fish")); } if let Some(custom_git_repos) = config.git_repos() {