diff --git a/lua/cosmic/config/examples/config.lua b/lua/cosmic/config/examples/config.lua index 1364eb1..0e8fa83 100644 --- a/lua/cosmic/config/examples/config.lua +++ b/lua/cosmic/config/examples/config.lua @@ -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 = {} diff --git a/lua/cosmic/core/todo-comments/init.lua b/lua/cosmic/core/todo-comments/init.lua index 45b34d8..c3a45e1 100644 --- a/lua/cosmic/core/todo-comments/init.lua +++ b/lua/cosmic/core/todo-comments/init.lua @@ -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 {}))