mirror of
https://github.com/jimeh/.emacs.d.git
synced 2026-02-19 13:46:41 +00:00
24 lines
422 B
EmacsLisp
24 lines
422 B
EmacsLisp
;;; siren-direx.el --- jimeh's Emacs Siren: direx configuration.
|
|
|
|
;;; Commentary:
|
|
|
|
;; Basic configuration for direx.
|
|
|
|
;;; Code:
|
|
|
|
(use-package direx
|
|
:general
|
|
("C-x j" 'direx-project:jump-to-project-root)
|
|
:hook
|
|
(direx-mode . siren-direx-mode-setup)
|
|
|
|
:custom
|
|
(direx:closed-icon " + ")
|
|
(direx:open-icon " - ")
|
|
|
|
:preface
|
|
(defun siren-direx-mode-setup ()))
|
|
|
|
(provide 'siren-direx)
|
|
;;; siren-direx.el ends here
|