diff options
author | Justin M. Keyes <justinkz@gmail.com> | 2024-10-07 08:27:38 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-10-07 08:27:38 -0700 |
commit | 61f1b091ea97793f9b644cebf6c84cf6bbb4f0bc (patch) | |
tree | 114b049d97f362372486a489668cc8e07063eb76 /contrib/minimal.lua | |
parent | 50f006b61774311e67e6948cd863bd503e4bcdfb (diff) | |
download | rneovim-61f1b091ea97793f9b644cebf6c84cf6bbb4f0bc.tar.gz rneovim-61f1b091ea97793f9b644cebf6c84cf6bbb4f0bc.tar.bz2 rneovim-61f1b091ea97793f9b644cebf6c84cf6bbb4f0bc.zip |
docs: dev-arch, focusable windows #30510
- 'statuscolumn' is no longer experimental
- add tags for popular searches on neovim.io
Diffstat (limited to 'contrib/minimal.lua')
-rw-r--r-- | contrib/minimal.lua | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/contrib/minimal.lua b/contrib/minimal.lua index 2391e12f68..cb4b7f8673 100644 --- a/contrib/minimal.lua +++ b/contrib/minimal.lua @@ -2,7 +2,8 @@ for name, url in pairs { -- ADD PLUGINS _NECESSARY_ TO REPRODUCE THE ISSUE, e.g: - -- some_plugin = 'https://github.com/author/plugin.nvim' + -- 'https://github.com/author1/plugin1', + -- 'https://github.com/author2/plugin2', } do local install_path = vim.fn.fnamemodify('nvim_issue/' .. name, ':p') if vim.fn.isdirectory(install_path) == 0 then |