From d1718a22aa3d106b1dfe0cf43165a44f67dcc7a4 Mon Sep 17 00:00:00 2001 From: Roey Darwish Dror Date: Thu, 5 Jul 2018 20:46:05 +0300 Subject: [PATCH] Pull vim directories --- README.md | 4 +++- src/main.rs | 2 ++ 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 684e56ce..1d075b54 100644 --- a/README.md +++ b/README.md @@ -29,7 +29,9 @@ Just run `topgrade`. It will run the following steps: * ~/.zshrc * [~/.oh-my-zsh](https://github.com/robbyrussell/oh-my-zsh) * ~/.tmux - * ~/.config/fish/config.fish + * ~/.config/fish + * ~/.config/nvim + * ~/.vim * Custom defined paths * *Unix*: Run [zplug](https://github.com/zplug/zplug) update * *Unix*: Run [fisherman](https://github.com/fisherman/fisherman) update diff --git a/src/main.rs b/src/main.rs index cc47451c..8573ad82 100644 --- a/src/main.rs +++ b/src/main.rs @@ -122,6 +122,8 @@ fn run() -> Result<(), Error> { } git_repos.insert(home_path(".emacs.d")); + git_repos.insert(home_path(".vim")); + git_repos.insert(home_path(".config/nvim")); #[cfg(unix)] {