Skip to content

Commit

Permalink
tweak(vterm): move C-l/h/k/j to directions
Browse files Browse the repository at this point in the history
  • Loading branch information
abougouffa committed Dec 26, 2023
1 parent 28b5aaf commit 58198b8
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion modules/me-tools.el
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,13 @@
:custom
(vterm-always-compile-module t)
(vterm-max-scrollback 5000)
(vterm-tramp-shells '(("docker" "/bin/bash"))))
(vterm-tramp-shells '(("docker" "/bin/bash")))
:config
(+imap! :keymaps 'vterm-mode-map
"C-l" #'vterm-send-right
"C-h" #'vterm-send-left
"C-k" #'vterm-send-up
"C-j" #'vterm-send-down))

(use-package multi-vterm
:straight t
Expand Down

0 comments on commit 58198b8

Please sign in to comment.