changed leader leader to toggling the chat buffer

This commit is contained in:
2025-03-02 11:02:51 -05:00
parent 98a9cab64b
commit cc98f9145b
3 changed files with 16 additions and 4 deletions
+1 -1
View File
@@ -9,7 +9,7 @@ vim.keymap.set({ 'n', 'v' }, '<Space>', '<Nop>', { silent = true })
local opts = { noremap = true, silent = true }
-- This is for CodeCompanion Plugin. I will move this later
vim.keymap.set('n', '<leader>mt', ':CodeCompanionChat Toggle<CR>', opts)
vim.keymap.set('n', '<leader><leader>', ':CodeCompanionChat Toggle<CR>', opts)
-- save file
vim.keymap.set('n', '<C-s>', '<cmd> w <CR>', opts)