diff options
author | Damjan 9000 <damjan.9000@gmail.com> | 2024-03-03 09:54:58 +0100 |
---|---|---|
committer | Damjan 9000 <damjan.9000@gmail.com> | 2024-03-03 09:54:58 +0100 |
commit | de8986f7a8a6688fee64b381ec3ef4a9c347518e (patch) | |
tree | dcacc4cc7c23c9fa26faa45d339f0f1eb7b5ae4b /lua/kickstart/plugins/todo-comments.lua | |
parent | df166c3b8b075a3444dd88215320aa7fbaa55ed5 (diff) | |
parent | e6710a461ab08513af80c213929ff64e75b5e456 (diff) |
Merge 'upstream/master' VimEnter, win install, custom/plugins note
fix: add note in readme for custom plugins
README.md: updated windows install instructions (#674)
feat: use VimEnter event instead of VeryLazy (#673)
Diffstat (limited to 'lua/kickstart/plugins/todo-comments.lua')
-rw-r--r-- | lua/kickstart/plugins/todo-comments.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lua/kickstart/plugins/todo-comments.lua b/lua/kickstart/plugins/todo-comments.lua index c4c7764..407e821 100644 --- a/lua/kickstart/plugins/todo-comments.lua +++ b/lua/kickstart/plugins/todo-comments.lua @@ -1,5 +1,5 @@ -- Highlight todo, notes, etc in comments return { - { 'folke/todo-comments.nvim', dependencies = { 'nvim-lua/plenary.nvim' }, opts = { signs = false } }, + { 'folke/todo-comments.nvim', event = 'VimEnter', dependencies = { 'nvim-lua/plenary.nvim' }, opts = { signs = false } }, } -- vim: ts=2 sts=2 sw=2 et |