From 016e3e40f9570bb656c095d02f99bf32c6558423 Mon Sep 17 00:00:00 2001
From: jjanzen <jjanzen@jjanzen.ca>
Date: Mon, 3 Mar 2025 14:35:27 -0600
Subject: clean up init.el

---
 common/.config/emacs/init.el.org | 16 +---------------
 1 file changed, 1 insertion(+), 15 deletions(-)

(limited to 'common')

diff --git a/common/.config/emacs/init.el.org b/common/.config/emacs/init.el.org
index d4f3d5a..898927a 100644
--- a/common/.config/emacs/init.el.org
+++ b/common/.config/emacs/init.el.org
@@ -110,7 +110,7 @@ I hate macOS scroll inertia. Scrolling in one window, switching to Emacs, and hi
 
 Make Emacs confirm that I want to close it on kill.
 #+begin_src emacs-lisp
-(setq confirm-kill-emacs 'yes-or-no-p)
+  (setq confirm-kill-emacs 'yes-or-no-p)
 #+end_src
 
 Make Emacs delete trailing whitspace on save. This does not happen in =markdown-mode= which sometimes needs trailing whitespace.
@@ -205,20 +205,6 @@ Install a better PDF viewer than =DocView=.
           TeX-source-correlate-start-server t))
 #+end_src
 
-Install and configure =fzf= to be used as a fuzzy finder.
-#+begin_src emacs-lisp
-  (use-package fzf
-    :bind
-    ("C-c C-f" . fzf)
-    :config
-    (setq fzf/args "-x --color 16 --print-query --margin=1,0 --no-hscroll"
-          fzf/executable "fzf"
-          fzf/git-grep-args "-i --line-number %s"
-          fzf/grep-command "grep -nrH"
-          fzf/position-bottom nil
-          fzf/window-height 15))
-#+end_src
-
 Install and configure =vterm= as a terminal emulator in Emacs.
 #+begin_src emacs-lisp
   (use-package vterm
-- 
cgit v1.2.3