From aaa2c3cd09eb2148e19268e5ef827fab0292b7cd Mon Sep 17 00:00:00 2001 From: Tyson Gach Date: Sun, 23 Feb 2020 16:37:32 -0500 Subject: [PATCH] Configure asdf's `legacy_version_file` setting asdf has a very useful configuration setting called `legacy_version_file`. When it is set to `yes`, asdf will read the version files used by other version managers (e.g. `.ruby-version`) in addition to asdf's own `.tool-versions` file. This makes the migration to asdf much smoother, as many projects only specify these 'legacy' dotfiles for versioning. Documentation: https://asdf-vm.com/#/core-configuration?id=homeasdfrc Closes https://github.com/thoughtbot/dotfiles/issues/654 --- asdfrc | 1 + 1 file changed, 1 insertion(+) create mode 100644 asdfrc diff --git a/asdfrc b/asdfrc new file mode 100644 index 0000000..e600bd0 --- /dev/null +++ b/asdfrc @@ -0,0 +1 @@ +legacy_version_file = yes