feat(xwidgets): Add xwidget-plus package

This commit is contained in:
2020-03-16 01:01:20 +00:00
parent 314923217c
commit c0993c8c54
2 changed files with 29 additions and 1 deletions

View File

@@ -127,9 +127,12 @@
(require 'siren-helm-make)
(require 'siren-kubernetes)
;; ;; Writing
;; Writing
(require 'siren-writeroom)
;; XWidgets
(require 'siren-xwidget-plus)
;; Languages
(require 'siren-prog-mode)
(require 'siren-applescript)

View File

@@ -0,0 +1,25 @@
;;; siren-xwidget-plus.el --- jimeh's Emacs Siren: xwidget-plus configuration.
;;; Commentary:
;; Basic configuration for xwidget-plus.
;;; Code:
(require 'siren-ido)
(use-package xwidget-plus
:straight (:type git :host github :repo "canatella/xwidget-plus")
:hook
(xwidget-webkit-mode . siren-xwidget-plus-setup)
:custom
(xwidget-plus-completion-backend 'ido)
:init
(defun siren-xwidget-plus-setup ()
(define-key xwidget-webkit-mode-map (kbd "v") 'xwidget-plus-follow-link)))
(provide 'siren-xwidget-plus)
;;; siren-xwidget-plus.el ends here