Skip to content

Commit

Permalink
feat(editor/env): switch from direnv package to envrc and mise
Browse files Browse the repository at this point in the history
envrc.el should be less invasive overall, and mise does the same thing,
but for mise instead of direnv.
  • Loading branch information
jimeh committed May 9, 2024
1 parent 7dfc8b5 commit 6e9307d
Show file tree
Hide file tree
Showing 3 changed files with 29 additions and 1 deletion.
3 changes: 2 additions & 1 deletion core/siren-core-modules.el
Original file line number Diff line number Diff line change
Expand Up @@ -34,12 +34,13 @@
(require 'siren-helpful)

;; Editor
(require 'siren-direnv)
(require 'siren-envrc)
(require 'siren-display-fill-column)
(require 'siren-display-indentation)
(require 'siren-display-line-numbers)
(require 'siren-embark)
(require 'siren-minions)
(require 'siren-mise)
(require 'siren-mwim)
(require 'siren-origami)
(require 'siren-rainbow)
Expand Down
13 changes: 13 additions & 0 deletions modules/editor/siren-envrc.el
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
;;; siren-envrc.el --- jimeh's Emacs Siren: envrc configuration.

;;; Commentary:

;; Basic configuration for envrc.

;;; Code:

(use-package envrc
:hook (after-init . envrc-global-mode))

(provide 'siren-envrc)
;;; siren-envrc.el ends here
14 changes: 14 additions & 0 deletions modules/editor/siren-mise.el
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
;;; siren-mise.el --- jimeh's Emacs Siren: mise configuration.

;;; Commentary:

;; Basic configuration for mise.

;;; Code:

(use-package mise
:hook
(after-init . global-mise-mode))

(provide 'siren-mise)
;;; siren-mise.el ends here

0 comments on commit 6e9307d

Please sign in to comment.