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)] {