summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorfpi2020-03-19 13:24:06 +0100
committerfpi2020-04-05 13:34:56 +0200
commitfc8fb02b3219d7e18f0cc777539de663445fa77a (patch)
treea851d2aff7d663eac221aa347545ebe770910974
parentMove org todo configuration to main org block (diff)
Allow to pass options to grep command
Default grep-command ends with "-e" and expects a pattern and no options
Diffstat (limited to '')
-rw-r--r--emacs-init.org5
1 files changed, 5 insertions, 0 deletions
diff --git a/emacs-init.org b/emacs-init.org
index 57fc4f3..93e0ebe 100644
--- a/emacs-init.org
+++ b/emacs-init.org
@@ -2683,6 +2683,11 @@ To open and hide a shell quickly I use =shell-pop=.
:custom
(shell-pop-shell-type (quote ("eshell" "*eshell*" (lambda nil (eshell))))))
#+end_src
+** Grep
+#+begin_src emacs-lisp
+(use-package grep
+ :custom (grep-command "grep --color -nH --null "))
+#+end_src
** Proced
Built-in process monitor.
#+BEGIN_SRC emacs-lisp