Emacs: Replace ripgrep with rg and bind rg-menu to C-c s.

This commit is contained in:
tastytea 2020-05-05 17:47:29 +02:00
parent ccdf01ac10
commit d345023731
1 changed files with 3 additions and 2 deletions

View File

@ -1,6 +1,6 @@
;;; common.el --- Common settings for text files. -*- lexical-binding: t; -*-
;; Time-stamp: <2020-04-20T02:03:53+0200>
;; Time-stamp: <2020-05-05T17:45:23+0200>
;;; Commentary:
@ -251,7 +251,8 @@
(text-mode . my/ws-load-local-vars-first)
(before-save . my/ws-maybe-cleanup)))
(use-package ripgrep)
(use-package rg
:bind ("C-c s" . rg-menu))
(provide 'text/common)
;;; common.el ends here