From 800d066aab05f9c04d9e675e528c49cabf8ddc8c Mon Sep 17 00:00:00 2001 From: Daniel Boll <43689101+Daniel-Boll@users.noreply.github.com> Date: Thu, 30 Mar 2023 23:44:25 +0000 Subject: [PATCH] feat(bootstrap): indicate that no is the default answer Indicates that the default answer would be *no* if the user provide any input other than `y` --- lua/core/bootstrap.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lua/core/bootstrap.lua b/lua/core/bootstrap.lua index ecd441c..2f435d9 100644 --- a/lua/core/bootstrap.lua +++ b/lua/core/bootstrap.lua @@ -48,7 +48,7 @@ end M.gen_chadrc_template = function() if not vim.api.nvim_get_runtime_file("lua/custom/chadrc.lua", false)[1] then local path = vim.fn.stdpath "config" .. "/lua/custom/" - local input = vim.fn.input "Do you want to install example custom config? (y/n) : " + local input = vim.fn.input "Do you want to install example custom config? (y/N) : " if input == "y" then M.echo "cloning example custom config repo ..."