return { "kikofmas/grammarous.nvim", config = function () local keymap = vim.keymap local opts = require('utils').opts keymap.set('n', 'sl', ':GrammarousCheck', opts('LanguageTool Spell Checker')) keymap.set('n', 'sc', ':GrammarousCheck --comments-only', opts('LanguageTool Spell Checker, only comments')) keymap.set('n', 'ss', ':set spell', opts('Start built-in spell checker')) keymap.set('n', 'sn', ':set nospell', opts('Stop spell checker')) end }