Skip to content

Latest commit

 

History

History
26 lines (23 loc) · 788 Bytes

additional-packages.org

File metadata and controls

26 lines (23 loc) · 788 Bytes

Additional Packages

VTerm

(use-package vterm)
;; for some reason, using a setq or the :config or :custom keyword in
;; use-package does not set the variable correctly for
;; vterm. Resorting to custom-set-variables.
;; (custom-set-variables
;;  '(vterm-keymap-exceptions (push "<f9>" vterm-keymap-exceptions))
;;  '(vterm-keymap-exceptions (push "C-o" vterm-keymap-exceptions)))
;; (define-key vterm-mode-map (kbd "C-q") #'vterm-send-next-key)

Magit Todos

(use-package magit-todos
  :after magit
  :config (magit-todos-mode 1))