Skip to content

Commit 78a4d45

Browse files
committed
(mini.deps) Update installation instructions to work on first launch.
1 parent 490dd84 commit 78a4d45

File tree

3 files changed

+3
-1
lines changed

3 files changed

+3
-1
lines changed

README.md

+1
Original file line numberDiff line numberDiff line change
@@ -44,6 +44,7 @@ if not vim.loop.fs_stat(mini_path) then
4444
'https://github.com/echasnovski/mini.nvim', mini_path
4545
}
4646
vim.fn.system(clone_cmd)
47+
vim.cmd('packadd mini.nvim | helptags ALL')
4748
end
4849
```
4950

readmes/mini-deps.md

+1
Original file line numberDiff line numberDiff line change
@@ -68,6 +68,7 @@ if not vim.loop.fs_stat(mini_path) then
6868
'https://github.com/echasnovski/mini.nvim', mini_path
6969
}
7070
vim.fn.system(clone_cmd)
71+
vim.cmd('packadd mini.nvim | helptags ALL')
7172
end
7273

7374
-- Set up 'mini.deps' (customize to your liking)

scripts/init-deps-example.lua

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ if not vim.loop.fs_stat(mini_path) then
55
vim.cmd('echo "Installing `mini.nvim`" | redraw')
66
local clone_cmd = { 'git', 'clone', '--filter=blob:none', 'https://github.com/echasnovski/mini.nvim', mini_path }
77
vim.fn.system(clone_cmd)
8-
vim.cmd('packadd mini.nvim')
8+
vim.cmd('packadd mini.nvim | helptags ALL')
99
end
1010

1111
-- Set up 'mini.deps' (customize to your liking)

0 commit comments

Comments
 (0)