diff options
author | HampusM <hampus@hampusmat.com> | 2022-09-18 11:39:25 +0200 |
---|---|---|
committer | HampusM <hampus@hampusmat.com> | 2022-09-18 11:39:25 +0200 |
commit | 3c238894c5b6f15c5f27cea8bd3785eb0f1ebf0f (patch) | |
tree | 68292df2b0cd698484d26057a4faf914e9ea6300 /lua/maps/terminal.lua | |
parent | d8fa264ac732286dcf9234bc40e60eeb7e230ca7 (diff) |
add config
Diffstat (limited to 'lua/maps/terminal.lua')
-rw-r--r-- | lua/maps/terminal.lua | 37 |
1 files changed, 37 insertions, 0 deletions
diff --git a/lua/maps/terminal.lua b/lua/maps/terminal.lua new file mode 100644 index 0000000..cf6f999 --- /dev/null +++ b/lua/maps/terminal.lua @@ -0,0 +1,37 @@ +vim.api.nvim_set_keymap( + "n", + "<leader>t", + ":lua toggle_terminal(vim.g.terminal_height)<CR>", + {silent = true, noremap = true} +) + +vim.api.nvim_set_keymap( + "i", + "<leader>t", + "<Esc>:lua toggle_terminal(vim.g.terminal_height)<CR>", + {silent = true, noremap = true} +) + +vim.api.nvim_set_keymap( + "t", + "<leader>t", + "<C-\\><C-n>:lua toggle_terminal(vim.g.terminal_height)<CR>", + {silent = true, noremap = true} +) + +-- Terminal go back to normal mode +vim.api.nvim_set_keymap( + "t", + "<Esc>", + "<C-\\><C-n>", + {noremap = true} +) + +vim.api.nvim_set_keymap( + "t", + ":q!", + "<C-\\><C-n>:q!<CR>", + {noremap = true} +) + + |