Skip to content

Commit

Permalink
feat(nvim): Add keymap to bring up codecompanion actions
Browse files Browse the repository at this point in the history
  • Loading branch information
mrjones2014 committed Mar 18, 2024
1 parent 99f21f4 commit 8096aa7
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions nvim/lua/my/configure/codecompanion.lua
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,13 @@ return {
'CodeCompanionToggle',
'CodeCompanionActions',
},
keys = { {
'<leader>cc',
function()
require('codecompanion').actions()
end,
desc = 'CodeCompanion Actions',
} },
opts = {
adapters = {
chat = 'ollama',
Expand Down

0 comments on commit 8096aa7

Please sign in to comment.