From 9e104a03fc2dcddb3b2df8a290b3238e37b32b96 Mon Sep 17 00:00:00 2001 From: Warwick Date: Wed, 9 Aug 2023 16:07:39 +0100 Subject: [PATCH] Changed bind as I want to be able to make git commits in the term --- lua/core/plugin_config/terminal.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lua/core/plugin_config/terminal.lua b/lua/core/plugin_config/terminal.lua index 4d76e25..13502c6 100644 --- a/lua/core/plugin_config/terminal.lua +++ b/lua/core/plugin_config/terminal.lua @@ -7,7 +7,7 @@ require("toggleterm").setup({ -- Get out of terminal! function _G.set_terminal_keymaps() local opts = {buffer = 0} - vim.keymap.set('t', '', [[]], opts) + vim.keymap.set('t', '', [[]], opts) vim.keymap.set('t', '', [[]], opts) end vim.cmd('autocmd! TermOpen term://* lua set_terminal_keymaps()')