aboutsummaryrefslogtreecommitdiffstats
path: root/modules/init-dotenv.el
blob: e9c0785d8fb1359aa6257e5428e80e4623127a0f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
;;; init-dotenv.el --- .Emacs Configuration -*- lexical-binding: t -*-
;;; Commentary:
;;

;;; Code:
;; dotenv-mode
(use-package dotenv-mode
  :pin "MELPA"
  :mode ("\\.env\\'" . dotenv-mode))

(provide 'init-dotenv)
;;; init-dotenv.el ends here