1
0
Fork 0

refactor(emacs): organise into reasonable modules

Signed-off-by: Lucas Sta Maria <lucas@priime.dev>
This commit is contained in:
Lucas Sta Maria 2024-11-03 17:15:25 -05:00
parent 51a7ff1b9c
commit e99a639325
No known key found for this signature in database
GPG key ID: F07FB16A826E3B47
10 changed files with 270 additions and 199 deletions

View file

@ -0,0 +1,34 @@
;;; priime-convenience.el --- Convenience packages configuration
;;; Commentary:
;; Provides configuration for convenient packages that improve
;; development experience and productivity.
;;; Code:
(use-package projectile :straight t
:custom
(projectile-completion-system 'auto))
(use-package bufler :straight t
:bind (("C-x C-b" . bufler-list)
("C-x b" . bufler-switch-buffer))
:init
(bufler-mode 1))
(use-package embark :straight t
:bind (("C-." . embark-act)))
(use-package embark-consult :straight t)
(use-package wgrep :straight t)
(use-package no-littering :straight t)
(use-package vterm :straight t)
(use-package rg :straight t)
(use-package anzu :straight t
:init
(add-hook 'after-init-hook 'global-anzu-mode))
(use-package pdf-tools
:straight
'(pdf-tools :type git :host github
:repo "vedang/pdf-tools"))
(use-package olivetti :straight t
:hook (org-mode . olivetti-mode))
(provide 'priime-convenience)
;;; priime-convenience.el ends here