diff options
-rw-r--r-- | README.md | 13 | ||||
-rwxr-xr-x | bin/rda_diff | 4 |
2 files changed, 12 insertions, 5 deletions
@@ -8,9 +8,16 @@ cd dotfiles make ``` -This will download the [vim-plug](https://github.com/junegunn/vim-plug) plugin -manager from github if not already present at .vim/autoload. To install the -plugins, open vim and type +This will call the [install](install) script from this repository, which links +each configuration file from the dotfiles directory to a dotfile in the users +home directory. + +Also, it links vim configuration files to the respective +nvim configuration files, installs the official git prompt, +installs scripts from the bin directory into the users +bin directory, and finally installs the +[vim-plug](https://github.com/junegunn/vim-plug) plugin manager from github if +not already present at .vim/autoload. To install the plugins, open vim and type ```vim :PlugInstall diff --git a/bin/rda_diff b/bin/rda_diff index c8546be..10d6e58 100755 --- a/bin/rda_diff +++ b/bin/rda_diff @@ -3,7 +3,7 @@ # # Author: Johannes Ranke <johannes.ranke@jrwb.de> # ULR: https://github.com/jranke/dotfiles/bin/rda_diff -# Last Change: Fri May 12, 2023 at 04:36 PM +0200 +# Last Change: Tue Jun 20, 2023 at 08:52 AM +0200 # Load required packages {{{1 suppressMessages({ @@ -16,7 +16,7 @@ suppressMessages({ }) # Define usage in docopt syntax {{{1 -doc <- "Usage: rda_diff.R [-m --max-diffs] <reference_file> <test_file> +doc <- "Usage: rda_diff [-m --max-diffs] <reference_file> <test_file> Options: -m --max-diffs MAXDIFFS Maximum number of differences shown [default: 10]" |