require('neoai').setup() vim.keymap.set('n', 'ai', 'NeoAI', { silent = true, noremap = true, desc = "Toggle Neo[AI]" } ) vim.keymap.set('n', 'ac', 'NeoAIContext', { silent = true, noremap = true, desc = "Toggle Neo[A]i with [C]ontext of current buffer" } ) -- Can't get this to work :/ -- vim.keymap.set('x', 'ai', [['<,'>NeoAIContext]], -- { silent = true, noremap = true, desc = "Toggle Neo[AI] with context of selected text" } -- )