First commit.

This commit is contained in:
2022-01-09 21:19:46 +01:00
commit df36844dcc
107 changed files with 6565 additions and 0 deletions

View File

@@ -0,0 +1,15 @@
;;; 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