ripgrep: Move ripgrep config to its own file
The config for ripgrep now resides in its own file.
This commit is contained in:
parent
4e68d2b48b
commit
0e7dd9da5f
4 changed files with 6 additions and 6 deletions
|
@ -17,11 +17,6 @@
|
||||||
;; Turn on flyspell when writing commit messages
|
;; Turn on flyspell when writing commit messages
|
||||||
(add-hook 'git-commit-setup-hook 'git-commit-turn-on-flyspell))
|
(add-hook 'git-commit-setup-hook 'git-commit-turn-on-flyspell))
|
||||||
|
|
||||||
;; use ripgrep in emacs
|
|
||||||
(use-package deadgrep
|
|
||||||
:ensure t
|
|
||||||
:bind ("M-s d" . deadgrep))
|
|
||||||
|
|
||||||
;; paredit
|
;; paredit
|
||||||
(use-package paredit
|
(use-package paredit
|
||||||
:ensure t
|
:ensure t
|
||||||
|
|
4
.emacs.d/config/ripgrep.el
Normal file
4
.emacs.d/config/ripgrep.el
Normal file
|
@ -0,0 +1,4 @@
|
||||||
|
;; use ripgrep in emacs
|
||||||
|
(use-package deadgrep
|
||||||
|
:ensure t
|
||||||
|
:bind ("M-s d" . deadgrep))
|
|
@ -57,7 +57,7 @@ symbols, which are converted to strings, and suffixed with \".el\"."
|
||||||
:group 'config-snippets
|
:group 'config-snippets
|
||||||
:type '(repeat directory))
|
:type '(repeat directory))
|
||||||
|
|
||||||
(setq config-snippets '(base backups c calendar dev functions gpg org pass rust wl yaml))
|
(setq config-snippets '(base backups c calendar dev functions gpg org pass ripgrep rust wl yaml))
|
||||||
|
|
||||||
(message "Loading\nconfig-snippets: %s\nconfig-snippets-path: %s" config-snippets config-snippet-path)
|
(message "Loading\nconfig-snippets: %s\nconfig-snippets-path: %s" config-snippets config-snippet-path)
|
||||||
(dolist (snippet config-snippets)
|
(dolist (snippet config-snippets)
|
||||||
|
|
|
@ -8,6 +8,7 @@
|
||||||
!/.emacs.d/config/gpg.el
|
!/.emacs.d/config/gpg.el
|
||||||
!/.emacs.d/config/org.el
|
!/.emacs.d/config/org.el
|
||||||
!/.emacs.d/config/pass.el
|
!/.emacs.d/config/pass.el
|
||||||
|
!/.emacs.d/config/ripgrep.el
|
||||||
!/.emacs.d/config/rust.el
|
!/.emacs.d/config/rust.el
|
||||||
!/.emacs.d/config/tramp.el
|
!/.emacs.d/config/tramp.el
|
||||||
!/.emacs.d/config/yaml.el
|
!/.emacs.d/config/yaml.el
|
||||||
|
|
Loading…
Reference in a new issue