summaryrefslogtreecommitdiffstats
path: root/emacs
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2025-02-12 13:34:36 -0500
committerDavid Robillard <d@drobilla.net>2025-02-12 13:34:36 -0500
commitcaba84b50b0ecafaca24686b09a57e5d831c45ef (patch)
tree4e19c920e176a64216da782c3772e160aea9f617 /emacs
parent49d8ded72b8c7220cf7030bfd87bdf93b0bb6fde (diff)
downloaddotfiles-caba84b50b0ecafaca24686b09a57e5d831c45ef.tar.gz
dotfiles-caba84b50b0ecafaca24686b09a57e5d831c45ef.tar.bz2
dotfiles-caba84b50b0ecafaca24686b09a57e5d831c45ef.zip
Simplify grep-find command
Diffstat (limited to 'emacs')
-rw-r--r--emacs/.emacs.d/init.el3
1 files changed, 1 insertions, 2 deletions
diff --git a/emacs/.emacs.d/init.el b/emacs/.emacs.d/init.el
index 27e4ea1..6cac7da 100644
--- a/emacs/.emacs.d/init.el
+++ b/emacs/.emacs.d/init.el
@@ -213,8 +213,7 @@
'(gc-cons-threshold 10000000)
'(global-diff-hl-mode t)
'(global-git-gutter-mode t)
- '(grep-find-command
- "find . -type f -not -name \"*.svn-base\" -print0 | xargs -0 grep -I -n -s -F ")
+ '(grep-find-command "find . -type f -print0 | xargs -0 grep -I -n -s -F ")
'(indicate-empty-lines t)
'(inhibit-startup-screen t)
'(initial-major-mode 'fundamental-mode)