mirror of
https://github.com/jimeh/.emacs.d.git
synced 2026-02-19 13:46:41 +00:00
feat(xwidgets): Add xwidget-plus package
This commit is contained in:
@@ -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)
|
||||
|
||||
25
modules/xwidgets/siren-xwidget-plus.el
Normal file
25
modules/xwidgets/siren-xwidget-plus.el
Normal 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
|
||||
Reference in New Issue
Block a user