mirror of
https://github.com/Baipyrus/nvim-config.git
synced 2024-11-14 21:13:49 +00:00
added keymap to paste in terminal mode
This commit is contained in:
parent
689f994fbd
commit
1d1d8447f7
@ -137,6 +137,8 @@ if vim.g.neovide then
|
||||
vim.keymap.set({ 'n', 'v' }, '<C-S-v>', '"+p', { desc = 'Paste from System clipboard' })
|
||||
-- Clipboard for command and insert mode
|
||||
vim.keymap.set({ 'c', 'i' }, '<C-S-v>', '<C-R>+', { desc = 'Paste from System clipboard' })
|
||||
-- Clipboard for terminal mode
|
||||
vim.keymap.set({ 't' }, '<C-S-v>', '<C-\\><C-n>"+pi', { desc = 'Paste from System clipboard' })
|
||||
end
|
||||
|
||||
-- [[ Basic Autocommands ]]
|
||||
|
Loading…
Reference in New Issue
Block a user