system changes

This commit is contained in:
jjanzen 2025-03-17 16:36:16 -05:00
parent 03f2a453a8
commit dffe0de738

View file

@ -296,6 +296,25 @@ Configure and install =magit= as a =git= front end.
(use-package magit) (use-package magit)
#+end_src #+end_src
=which-key= to display options in commands.
#+begin_src emacs-lisp
(use-package which-key
:ensure t
:config
(which-key-mode))
#+end_src
Project management with projectile.
#+begin_src emacs-lisp
(use-package rg)
(use-package projectile
:init
(projectile-mode)
(setq projectile-project-search-path '("~/projects"))
:bind
(:map projectile-mode-map ("C-c p" . projectile-command-map)))
#+end_src
Install a better PDF viewer than =DocView=. Install a better PDF viewer than =DocView=.
#+begin_src emacs-lisp #+begin_src emacs-lisp
(use-package pdf-tools (use-package pdf-tools