lazyvim/lua/config/keymaps.lua

13 lines
487 B
Lua
Raw Normal View History

2023-02-04 21:51:17 +01:00
-- Keymaps are automatically loaded on the VeryLazy event
-- Default keymaps that are always set: https://github.com/LazyVim/LazyVim/blob/main/lua/lazyvim/config/keymaps.lua
-- Add any additional keymaps here
2023-02-04 22:50:59 +01:00
--
function _G.set_terminal_keymaps()
local opts = { buffer = 0 }
2023-02-14 17:48:36 +01:00
vim.keymap.set("t", "<C-esc>", [[<C-\><C-n>]], opts)
2023-02-04 22:50:59 +01:00
end
-- if you only want these mappings for toggle term use term://*toggleterm#* instead
vim.cmd("autocmd! TermOpen term://* lua set_terminal_keymaps()")