clean up init.el

This commit is contained in:
jjanzen 2025-03-03 14:35:27 -06:00
parent fa69f8c16b
commit 016e3e40f9

View file

@ -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