-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(editor/env): switch from direnv package to envrc and mise
envrc.el should be less invasive overall, and mise does the same thing, but for mise instead of direnv.
- Loading branch information
Showing
3 changed files
with
29 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |