nix/home/config/nvim/module/key/Terminal.nix

11 lines
197 B
Nix

{ ... }:
{
text = ''
-- Open terminal window.
rekey_normal("<Leader>4", "<cmd>terminal<cr>")
-- Detach from terminal with Esc key.
rekey_terminal("<Esc>", "<C-\\><C-n>")
'';
}