diff options
author | William Carroll <wpcarro@gmail.com> | 2020-02-02T12·14+0000 |
---|---|---|
committer | William Carroll <wpcarro@gmail.com> | 2020-02-02T18·31+0000 |
commit | 2ec436b2b5c7dc417cef80d9d9208c1379db009e (patch) | |
tree | 12e0d4f4be9ba62a999cfc1dacbdc5fce6214f56 /emacs/.emacs.d/wpc/keybindings.el | |
parent | 851aba82011379b045239ff85a65e50472566f0b (diff) |
Support KBDs for term-switcher package
To facilitate transitioning from using `terminator` to using `vterm`, I'm defining some KBDs that I hope will help me habituate my usage of `vterm`.
Diffstat (limited to 'emacs/.emacs.d/wpc/keybindings.el')
-rw-r--r-- | emacs/.emacs.d/wpc/keybindings.el | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/emacs/.emacs.d/wpc/keybindings.el b/emacs/.emacs.d/wpc/keybindings.el index 755311483dd1..967baf8c5192 100644 --- a/emacs/.emacs.d/wpc/keybindings.el +++ b/emacs/.emacs.d/wpc/keybindings.el @@ -15,6 +15,8 @@ (require 'chrome) (require 'scrot) (require 'ivy-clipmenu) +(require 'term-switcher) +(require 'general) ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; ;; Configuration @@ -42,5 +44,7 @@ ;; super. Remove this once I fix my Ergodox. (keybinding/exwm "C-S-s-s" #'scrot/select) +(general-define-key (kbd/raw 'x11 "t") #'ts/switch-to-terminal) + (provide 'keybindings) ;;; keybindings.el ends here |