From 0610a35e7a437166840f32ecf3ca6e1b6982da6d Mon Sep 17 00:00:00 2001 From: kalmenn Date: Sat, 30 Dec 2023 13:08:53 +0100 Subject: [PATCH] remaps: Ctrl-T open a new terminal in vertical split view --- lua/remaps.lua | 3 +++ 1 file changed, 3 insertions(+) diff --git a/lua/remaps.lua b/lua/remaps.lua index cd8232c..ea71694 100644 --- a/lua/remaps.lua +++ b/lua/remaps.lua @@ -15,3 +15,6 @@ vim.keymap.set("n", "", "bnext") -- exit from terminal easily vim.keymap.set("t", "", "") vim.keymap.set("t", "", "") -- Verbatim escape (send an esc to underlying program) + +-- fast open a new terminal +vim.keymap.set("n", "", "vsterm")