rice

personal dot files and scripts for linux and macOS
Log | Files | Refs | README | LICENSE

module-vterm.el (567B)


      1 (use-package vterm
      2   :config
      3   (add-to-list 'evil-emacs-state-modes 'vterm-mode)
      4   (add-to-list 'evil-emacs-state-modes 'compilation-mode)
      5   (add-to-list 'vterm-mode-hook 'toggle-modeline))
      6 
      7 (use-package multi-vterm
      8   :bind (("C-x p t" . multi-vterm-project)
      9          ((concat window-management-prefix "-T") . multi-vterm-dedicated-open)
     10          ((concat window-management-prefix "-u") . multi-vterm-next)
     11          ((concat window-management-prefix "-i") . multi-vterm-prev)
     12          ((concat window-management-prefix "-y") . multi-vterm)))
     13 
     14 (provide 'module-vterm)