summaryrefslogtreecommitdiff
path: root/.github/ISSUE_TEMPLATE
diff options
context:
space:
mode:
authorChristian Clason <christian.clason@uni-due.de>2021-08-13 13:42:04 +0200
committerGitHub <noreply@github.com>2021-08-13 13:42:04 +0200
commit2a86f47df649af3336ae10af73f0dbd574ca8cb1 (patch)
treecf0eaf825957956868162c727d936dc12b440f2d /.github/ISSUE_TEMPLATE
parentf557ae9081ed62f535fc582dab5fa734bea0ea71 (diff)
chore: speed up bootstrap for minimal.lua
* use `git://` protocol * omit `--no-single-branch` (since plenary contains stale branches with large objects)
Diffstat (limited to '.github/ISSUE_TEMPLATE')
-rw-r--r--.github/ISSUE_TEMPLATE/bug_report.yml6
1 files changed, 5 insertions, 1 deletions
diff --git a/.github/ISSUE_TEMPLATE/bug_report.yml b/.github/ISSUE_TEMPLATE/bug_report.yml
index c146355..b4e6a3c 100644
--- a/.github/ISSUE_TEMPLATE/bug_report.yml
+++ b/.github/ISSUE_TEMPLATE/bug_report.yml
@@ -69,6 +69,10 @@ body:
package_root = package_root,
compile_path = install_path .. '/plugin/packer_compiled.lua',
display = { non_interactive = true },
+ git = {
+ subcommands = { install = 'clone --depth 1 --progress' },
+ default_url_format = 'git://github.com/%s',
+ },
},
}
end
@@ -78,7 +82,7 @@ body:
-- ADD INIT.LUA SETTINGS THAT ARE _NECESSARY_ FOR REPRODUCING THE ISSUE
end
if vim.fn.isdirectory(install_path) == 0 then
- print("Installing Telescope and dependencies. This may take a while!")
+ print("Installing Telescope and dependencies.")
vim.fn.system { 'git', 'clone', '--depth=1', 'https://github.com/wbthomason/packer.nvim', install_path }
end
load_plugins()