Files
dotemacs/lisp/utilities/google-this.el
2022-01-09 21:19:46 +01:00

16 lines
525 B
EmacsLisp

;;; google-this.el --- Google item under point -*- lexical-binding: t; -*-
;;; Commentary: A set of emacs functions and bindings to google under point.
;;; Code: https://github.com/Malabarba/emacs-google-this
(use-package google-this
:defer
:diminish google-this-mode
:init
(user/bind-key-global :util :google 'google-search)
(user/bind-key-global :util :google-at-point 'google-this)
(user/bind-key-global :util :google-selection 'google-region))
(provide 'utilities/google-this)
;;; google-this.el ends here