feat(configs): config.comments -> config.todo_comments

This commit is contained in:
Matt Leong 2021-11-29 15:31:18 -08:00
parent 7acde5a7ab
commit dfab8f4c41
2 changed files with 2 additions and 2 deletions

View file

@ -68,7 +68,7 @@ config.lsp = {
config.auto_session = {}
-- See https://github.com/folke/todo-comments.nvim#%EF%B8%8F-configuration
config.comments = {}
config.todo_comments = {}
-- See :h notify.setup
config.notify = {}

View file

@ -22,4 +22,4 @@ require('todo-comments').setup(vim.tbl_deep_extend('force', {
hint = { 'DiagnosticHint', '#10B981' },
default = { 'Identifier', '#7C3AED' },
},
}, config.comments or {}))
}, config.todo_comments or {}))