Update files

This commit is contained in:
Chris
2026-07-08 08:58:18 +01:00
parent 7198cb031a
commit 64723103b6
3 changed files with 23 additions and 4 deletions
+2 -2
View File
@@ -236,9 +236,9 @@ end, { desc = 'Open scratchpad' })
vim.keymap.set({ 'n', 'v', 'c', 'i' }, '<C-S-S>', function()
require('snacks').scratch.select()
end, { desc = 'Open scratchpad buffers' })
vim.keymap.set({ 'n', 'v', 'c', 'i' }, '<C-T>', function()
vim.keymap.set({ 'n', 'v', 'c', 'i', 't' }, '<C-T>', function()
require('snacks').terminal.toggle()
end, { desc = 'Open terminal' })
end, { desc = 'Toggle terminal' })
-- Editing helpers
vim.keymap.set('i', '<C-O>', '<Esc>o', { desc = 'Add line below' })