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

10 lines
187 B
Nix
Raw Normal View History

2024-11-04 04:37:29 +03:00
{ ... }: {
text = ''
-- Open terminal window.
rekey_normal("<Leader>4", "<cmd>terminal<cr>")
2024-04-06 03:03:58 +03:00
2024-11-04 04:37:29 +03:00
-- Detach from terminal with Esc key.
rekey_terminal("<Esc>", "<C-\\><C-n>")
'';
2024-04-06 03:03:58 +03:00
}